{{ __('Request Withdrawal') }}

@if (!$canWithdraw) @endif @if ($withdrawalsRemaining <= 0) @endif

{{ __('Withdrawal Information') }}

  • {{ __('Available Balance: R') . number_format($availableBalance, 2) }}
  • {{ __('Minimum Withdrawal: R') . number_format($settings->minimum_withdrawal, 2) }}
  • {{ __('Maximum Withdrawal: R') . number_format($settings->maximum_withdrawal, 2) }}
  • {{ __('Fee: ') . number_format($settings->withdrawal_fee_percentage, 2) }}% + R{{ number_format($settings->withdrawal_fee_fixed, 2) }}
  • {{ __('Withdrawals Remaining This Month: ') . $withdrawalsRemaining }}
  • {{ __('Processing Time: ') . $settings->withdrawal_processing_days . ' business days' }}
@if ($paymentMethods->isEmpty()) @else
@csrf

{{ __('Min: R') . number_format($settings->minimum_withdrawal, 2) . ', Max: R' . number_format(min($settings->maximum_withdrawal, $availableBalance), 2) }}

{{ __('Add a new payment method') }}

{{ __('Fee Calculation') }}

{{ __('Amount: R0.00') }}

{{ __('Fee: R0.00') }}

{{ __('You will receive: R0.00') }}

{{ __('Cancel') }} {{ __('Submit Withdrawal Request') }}
@endif