{{ __('Payment for :name', ['name' => $student->name]) }} {{ __('Class') }} {{ $student->class }} · {{ $student->destination }}
@if(session('error')) {{ session('error') }} @endif
@if(in_array('mobile_money', $enabledPaymentMethods ?? ['mobile_money','card','bank_transfer','cash']))
{{ __('Pay via MTN Mobile Money or Airtel Money. You will be redirected to a secure payment page.') }}
@csrf @include('parent._payment_fields', ['currentTerm' => $currentTerm])
{{ __('Pay with Mobile Money') }}
@endif @if(in_array('card', $enabledPaymentMethods ?? ['mobile_money','card','bank_transfer','cash']))
{{ __('Pay with your Visa or Mastercard. Optionally save your card for automated future payments.') }}
@csrf @include('parent._payment_fields', ['currentTerm' => $currentTerm])
{{ __('Pay with Card') }}
@endif @if(in_array('bank_transfer', $enabledPaymentMethods ?? ['mobile_money','card','bank_transfer','cash']))
{{ __('Transfer directly to the school’s bank account, then record your payment details here.') }} @if($bankAccounts->isNotEmpty())
@foreach($bankAccounts as $ba) {{ $ba->label ?: $ba->bank_name }}
{{ __('Bank') }}:{{ $ba->bank_name }} {{ __('Account Name') }}:{{ $ba->account_name }} {{ __('Account Number') }}:{{ $ba->account_number }} @if($ba->branch){{ __('Branch') }}:{{ $ba->branch }}@endif @if($ba->swift_code){{ __('SWIFT/BIC') }}:{{ $ba->swift_code }}@endif
@endforeach
@else {{ __('Bank details are not configured yet. Please contact the school.') }} @endif
@csrf @include('parent._payment_fields', ['currentTerm' => $currentTerm])

{{ __('or drag and drop') }}

{{ __('PNG, JPG, PDF up to 4MB') }}

{{ __('Record Bank Transfer') }}
@endif @if(in_array('cash', $enabledPaymentMethods ?? ['mobile_money','card','bank_transfer','cash']))
{{ __('Record a cash payment that was made at the school office.') }}
@csrf @include('parent._payment_fields', ['currentTerm' => $currentTerm])

{{ __('or drag and drop') }}

{{ __('PNG, JPG, PDF up to 4MB') }}

{{ __('Record Cash Payment') }}
@endif