{{ __('central.BackToRegistration') }}
@if(request('cancelled'))
{{ __('central.PaymentCancelled') }}
@endif @if($errors->any())
{{ $errors->first() }}
@endif
@csrf
{{ __('central.PaymentMethod') }}
@if(count($gateways) === 0)

{{ __('central.NoGatewaysConfigured') }}

@else
@foreach($gateways as $i => $gw) @endforeach
@endif
{{-- Offline payment section (bank details + proof upload) --}}
{{ __('central.BankTransferDetails') }}

{{ __('central.AmountToTransfer') }}

{{ $currencySymbol }}{{ number_format($amount, 2) }} {{ $currencyCode }}

@if(!empty($bankDetails) && (($bankDetails['bank_name'] ?? '') || ($bankDetails['account_number'] ?? '')))
@if($bankDetails['bank_name'] ?? '')
{{ __('central.BankName') }} {{ $bankDetails['bank_name'] }}
@endif @if($bankDetails['account_holder'] ?? '')
{{ __('central.AccountHolder') }} {{ $bankDetails['account_holder'] }}
@endif @if($bankDetails['account_number'] ?? '')
{{ __('central.AccountNumber') }} {{ $bankDetails['account_number'] }}
@endif @if($bankDetails['iban'] ?? '')
{{ __('central.IBAN') }} {{ $bankDetails['iban'] }}
@endif @if($bankDetails['swift'] ?? '')
{{ __('central.SwiftBic') }} {{ $bankDetails['swift'] }}
@endif @if($bankDetails['branch'] ?? '')
{{ __('central.Branch') }} {{ $bankDetails['branch'] }}
@endif
@if($bankDetails['instructions'] ?? '')

{{ __('central.Instructions') }}

{{ $bankDetails['instructions'] }}

@endif @else
{{ __('central.BankDetailsNotConfigured') }}
@endif

{{ __('central.ClickOrDragFileHere') }}

{{ __('central.AllowedFileTypes') }}

@if(count($gateways) > 0)

{{ __('central.SecurePaymentNotice') }}

@endif
@php $defaultBtnText = __('central.PayAndCreateWorkspace', ['symbol' => $currencySymbol, 'amount' => number_format($amount, 2), 'code' => $currencyCode]); @endphp