@extends('layout.front.app',[ 'title' => Config::get('constants.SITE_NAME') ]) @section('content')

Withdrawal

Available Balance {{ $userWalletAmount }}

@if(($userWalletAmount - $minWalletAmount) >= $minRequestAmount)

You can place minimum {{ $minRequestAmount }} and maximum {{ $userWalletAmount - $minWalletAmount }} withdrawal request.

@endif @if(!$isDisableRequest)
@csrf
@if($userWalletAmount > $minWalletAmount)
 



@else

Amount should be greater-than {{ $minWalletAmount }} in your wallet for withdrawal.

@endif
@else

Please add your Bank Detail for withdrawal amount in your Bank.

Add Bank Detail
@endif
@stop