{{-- Left Column: Withdrawal Form --}}
{{-- Method Badge --}}
{{ $method->name }}

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

{{ $method->name }}

{{-- Amount Input with Balance --}}
{{ $settings->currency }}
@error('amount')

{{ $message }}

@enderror
{{-- Amount Notes --}}
{{ __('t.minimum_withdrawal') }}: {{ Number::currency($method->minimum, $settings->s_currency) }}
{{ __('t.maximum_withdrawal') }}: {{ Number::currency($method->maximum, $settings->s_currency) }}
{{-- OTP Section --}} @if ($settings->enable_withdrawal_otp)

{{ $statusMessage ?: __('t.otp_email_note') }}

@endif {{-- Payment Details Section --}} @if (!$method->default_pay || $method->name == 'BUSD') @if ($method->methodtype == 'crypto')

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

@else
{{ __('t.include_bank_details') }}
{{ __('t.check_details') }}
@endif @endif {{-- Submit Button --}}
{{-- Right Column: Important Notes --}}

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

{{-- Processing Time --}}

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

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

{{-- Verification --}}

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

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

{{-- Fee Information --}}

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

@if($method->charges_type == 'percentage') {{ __('t.fee_percentage_text', [Number::percentage($method->charges_amount)]) }} @else {{ __('t.fee_flat_text', [Number::currency($method->charges_amount, $settings->s_currency)]) }} @endif

{{-- Network/Chain Info for Crypto --}} @if ($method->methodtype == 'crypto')

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

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

@endif