@extends('layouts.app') @section('css') @endsection @section('page-header')
{{ __('Secure Checkout') }}
{{ $errors->first('name') }}
{{ $errors->first('lastname') }}
{{ $errors->first('email') }}
{{ $errors->first('phone_number') }}
{{ $errors->first('address') }}
{{ $errors->first('city') }}
{{ $errors->first('postal_code') }}
{{ $errors->first('country') }}
{{ $errors->first('vat') }}
{{ $bank['bank_instructions'] }}
Order ID: {{ $bank_order_id }}
{{ $bank['bank_requisites'] }}
{{ __('Prepaid Plan Name') }}: {{ $id->plan_name }}
{{ __('Included Credits') }}
{{ __('Words Included') }}: {{ number_format($id->words) }}
{{ __('Dalle Images Included') }}: {{ number_format($id->dalle_images) }}
{{ __('SD Images Included') }}: {{ number_format($id->sd_images) }}
{{ __('Characters Included') }}: {{ number_format($id->characters) }}
{{ __('Minutes Included') }}: {{ number_format($id->minutes) }}
{{ __('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 }}
{{ __('Discount Applied') }}
{{ __('Total Due') }} @if (config('payment.decimal_points') == 'allow') {{ number_format((float)$total_value, 2, '.', '') }} @else {{ number_format($total_value) }} @endif {{ $currency }}