{{-- Bank Transfer Payment --}} @if ($method->name == 'Bank Transfer')
{{-- Bank Information Card --}}
{{-- Bank Name --}} @if (!empty($method->bank_name))
{{ __('t.bank_name') }}
{{ $method->bank_name }}
@endif {{-- Account Name --}} @if (!empty($method->account_name))
{{ __('t.account_name') }}
{{ $method->account_name }}
@endif {{-- Account Number --}} @if (!empty($method->account_number))
{{ __('t.account_number') }}
{{ $method->account_number }}
@endif {{-- Swift Code --}} @if (!empty($method->swift_code))
{{ __('t.swift_code') }}
{{ $method->swift_code }}
@endif
@include('millage.deposit.includes.submit-payment')
@endif {{-- Credit Card & Other Payment Methods --}}
@if ($method->name == 'Credit-Debit Card')
{{-- Payment Provider Selection --}}
@if ($settings->credit_card_provider == 'Paystack')
@include('millage.deposit.includes.paystack-payment')
@endif @if ($settings->credit_card_provider == 'Flutterwave')
@include('millage.deposit.includes.flutterwave-payment')
@endif @if ($settings->credit_card_provider == 'Stripe')
@include('millage.deposit.includes.stripe-payment')
@endif
@endif {{-- PayPal Payment --}} @if ($method->name == 'Paypal')
@include('millage.deposit.includes.paypal-payment')
@endif