{{-- resources/views/dashboard/wallet/withdraw.blade.php --}} @extends('layouts.user') @section('title', 'Withdraw {{ $asset }}') @section('content')
{{-- ── Header ── --}}

Withdraw {{ $asset }}

{{-- ── Balance strip ── --}}
Asset Balance
{{ number_format((float)$availableBalance, 8) }}
{{ $asset }} · ${{ number_format((float)$availableBalanceUsd, 2) }}
USD Balance
${{ number_format((float)$accountUsdBalance, 2) }}
Available
{{ $asset }} Price
${{ number_format((float)($assetUsdPrice ?? 0), 2) }}
Live USD rate
{{-- ── Main layout ── --}}
{{-- Left: Form --}}
Withdrawal Request
Select source and submit
@csrf
@error('asset')
{{ $message }}
@enderror
USD ≈ $0.00
@error('amount')
{{ $message }}
@enderror
Ensure this matches the {{ $asset }} network
@error('wallet_address')
{{ $message }}
@enderror
!
Irreversible Action
Double-check your wallet address before submitting. Withdrawals cannot be reversed once processed.
Cancel
{{-- Right: Asset switcher --}}
Switch Asset
Withdraw a different asset
{{-- ── OTP Modal ── --}} @endsection @push('scripts') @endpush