@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') }}

{{ __('Prepaid Plan Name') }}: {{ $id->plan_name }}

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

{{ __('Included Credits') }}

@if ($id->words != 0)

{{ __('Words Included') }}: {{ number_format($id->words) }}

@endif @if ($id->dalle_images != 0)

{{ __('Dalle Images Included') }}: {{ number_format($id->dalle_images) }}

@endif @if ($id->sd_images != 0)

{{ __('SD Images Included') }}: {{ number_format($id->sd_images) }}

@endif @if ($id->characters != 0)

{{ __('Characters Included') }}: {{ number_format($id->characters) }}

@endif @if ($id->minutes != 0)

{{ __('Minutes Included') }}: {{ number_format($id->minutes) }}

@endif
{{ __('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') }}

{{ __('Discount Applied') }}

{{ __('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