@extends('layouts.promoter') @section('page-title', 'Request Withdrawal') @section('content')

Request Withdrawal

Available Balance

${{ number_format(auth()->user()->promoterWallet?->balance ?? 0, 2) }}

Minimum withdrawal: ${{ number_format(config('app.promoter_min_withdrawal', 10), 2) }}

@csrf
@error('amount')

{{ $message }}

@enderror
@error('payment_method')

{{ $message }}

@enderror
@error('notes')

{{ $message }}

@enderror
Cancel
@push('scripts') @endpush @endsection