{{ __('Deposit Funds to Wallet') }}

Add Funds to Your Wallet

@include('layouts.partials.flash-messages') {{-- Or your specific alert component --}}

Your Current Wallet Balance: ${{ number_format($currentBalance, 2) }}

@csrf
@error('amount')

{{ $message }}

@enderror
@if(count($paymentGateways) > 0)
@error('payment_method')

{{ $message }}

@enderror
{{-- Placeholder for payment gateway specific fields (e.g., Stripe Elements, PayPal button) --}}

Payment gateway integration will appear here for the selected method.

@else

No payment gateways are currently configured for deposits. Please contact support.

@endif