@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.') }}
@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.') }}
@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
@endif
@if(in_array('cash', $enabledPaymentMethods ?? ['mobile_money','card','bank_transfer','cash']))
{{ __('Record a cash payment that was made at the school office.') }}
@endif