@extends('layouts.app') @section('css') @endsection @section('page-header') @endsection @section('content')
@csrf

{{ __('Secure Checkout') }}

{{ __('Billing Details') }}
@error('name')

{{ $errors->first('name') }}

@enderror
@error('lastname')

{{ $errors->first('lastname') }}

@enderror
@error('email')

{{ $errors->first('email') }}

@enderror
@error('phone_number')

{{ $errors->first('phone_number') }}

@enderror
@error('address')

{{ $errors->first('address') }}

@enderror
@error('city')

{{ $errors->first('city') }}

@enderror
@error('postal_code')

{{ $errors->first('postal_code') }}

@enderror
@error('country')

{{ $errors->first('country') }}

@enderror
@error('vat')

{{ $errors->first('vat') }}

@enderror
{{ __('Select Payment Option') }}
@foreach ($payment_platforms as $payment_platform)
@endforeach
@foreach ($payment_platforms as $payment_platform) @if ($payment_platform->name !== 'BankTransfer')
@includeIf('components.'.strtolower($payment_platform->name).'-collapse')
@else

{{ $bank['bank_instructions'] }}

Order ID: {{ $bank_order_id }}

{{ $bank['bank_requisites'] }}
@endif @endforeach
{{ __('Order Details') }}

{{ __('Subscription Plan Details') }}

{{ $id->plan_name }}

@if ($id->free) {{ __('Free') }} @else @if(config('payment.decimal_points') == 'allow'){{ number_format((float)$id->price, 2) }} @else{{ number_format($id->price) }} @endif {{ $id->currency }} / {{ $id->payment_frequency }} @endif

{{ __('Included Features') }}

    @if ($id->words == -1)
  • {{ __('Unlimited') }} {{ __('words / month') }}
  • @else @if($id->words != 0)
  • {{ number_format($id->words) }} {{ __('words / month') }}
  • @endif @endif @if (config('settings.image_feature_user') == 'allow') @if ($id->dalle_image_engine != 'none') @if ($id->dalle_images == -1)
  • {{ __('Unlimited') }} {{ __('Dalle images / month') }}
  • @else @if($id->dalle_images != 0)
  • {{ number_format($id->dalle_images) }} {{ __('Dalle images / month') }}
  • @endif @endif @endif @endif @if (config('settings.image_feature_user') == 'allow') @if ($id->sd_image_engine != 'none') @if ($id->sd_images == -1)
  • {{ __('Unlimited') }} {{ __('SD images / month') }}
  • @else @if($id->sd_images != 0)
  • {{ number_format($id->sd_images) }} {{ __('SD images / month') }}
  • @endif @endif @endif @endif @if (config('settings.whisper_feature_user') == 'allow') @if ($id->minutes == -1)
  • {{ __('Unlimited') }} {{ __('minutes / month') }}
  • @else @if($id->minutes != 0)
  • {{ number_format($id->minutes) }} {{ __('minutes / month') }}
  • @endif @endif @endif @if (config('settings.voiceover_feature_user') == 'allow') @if ($id->characters == -1)
  • {{ __('Unlimited') }} {{ __('characters / month') }}
  • @else @if($id->characters != 0)
  • {{ number_format($id->characters) }} {{ __('characters / month') }}
  • @endif @endif @endif @if($id->team_members != 0)
  • {{ $id->team_members }} {{ __('team members') }}
  • @endif @if (config('settings.chat_feature_user') == 'allow') @if($id->chat_feature)
  • {{ __('AI Chats Feature') }}
  • @endif @endif @if (config('settings.image_feature_user') == 'allow') @if($id->image_feature)
  • {{ __('AI Images Feature') }}
  • @endif @endif @if (config('settings.voiceover_feature_user') == 'allow') @if($id->voiceover_feature)
  • {{ __('AI Voiceover Feature') }}
  • @endif @endif @if (config('settings.whisper_feature_user') == 'allow') @if($id->transcribe_feature)
  • {{ __('AI Speech to Text Feature') }}
  • @endif @endif @if (config('settings.code_feature_user') == 'allow') @if($id->code_feature)
  • {{ __('AI Code Feature') }}
  • @endif @endif @if($id->team_members)
  • {{ __('Team Members Option') }}
  • @endif @foreach ( (explode(',', $id->plan_features)) as $feature ) @if ($feature)
  • {{ $feature }}
  • @endif @endforeach
{{ __('Purchase Summary') }}

{{ __('Subtotal') }} @if (config('payment.decimal_points') == 'allow') {{ number_format((float)$id->price, 2, '.', '') }} @else {{ number_format($id->price) }} @endif {{ $id->currency }}

{{ __('Taxes') }} ({{ config('payment.payment_tax') }}%)@if (config('payment.decimal_points') == 'allow') {{ number_format((float)$tax_value, 2, '.', '') }} @else {{ number_format($tax_value) }} @endif {{ $id->currency }}

{{ __('Total') }}

{{ __('Total Due') }} @if (config('payment.decimal_points') == 'allow') {{ number_format((float)$total_value, 2, '.', '') }} @else {{ number_format($total_value) }} @endif {{ $currency }}

@endsection @section('js') @endsection