{{-- Header
{{ __('t.dashboard') }} {{ __('t.withdrawal') }}
--}}
@if(!$request)
{{-- Heading --}}

{{ __('t.withdraw_funds') }}

{{ __('t.select_withdrawal_method') }}

{{-- Method Selection --}}
{{-- Custom Dropdown Trigger --}} {{-- Methods Dropdown --}}
{{-- Method Info Display --}} @if(!$selectedMethod)

{{ __('t.safe_secure_withdrawals') }}

{{ __('t.withdrawal_description') }}

{{ __('t.secure_processing') }}

{{ __('t.fast_withdrawals') }}

@endif {{-- Selected Method Details --}} @if($selectedMethod) @php $method = $methods->find($selectedMethod); @endphp
{{-- Method Info Cards --}}

{{ __('t.min_withdrawal') }}

{{ Number::currency($method->minimum, $settings->s_currency) }}

{{ __('t.max_withdrawal') }}

{{ Number::currency($method->maximum, $settings->s_currency) }}

{{ __('t.processing_fee') }}

@if($method->charges_type == 'percentage') {{ Number::percentage($method->charges_amount) }} @else {{ Number::currency($method->charges_amount, $settings->s_currency) }} @endif

{{-- Continue Button --}}
@endif
@else {{-- Cancel Button --}}

{{ __('t.complete_withdrawal') }}

{{-- Withdrawal Form --}}
@endif