@if (!$canWithdraw)
@if (!$settings->allow_withdrawals)
{{ __('Withdrawals are currently disabled.') }}
@elseif ($availableBalance < $settings->minimum_withdrawal)
{{ __('You do not have enough balance to make a withdrawal. Minimum withdrawal amount is R') . number_format($settings->minimum_withdrawal, 2) }}
@endif
@endif
@if ($withdrawalsRemaining <= 0)
{{ __('You have reached the maximum number of withdrawals for this month.') }}
@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())
{{ __('You need to add a payment method before you can request a withdrawal.') }}
@else
@endif