@extends('layouts.app') @section('content')

Process Withdrawal Request

@if ($withdrawal->status != 'Processed')

Send Funds to {{ $user->name }} through his payment details below

@else

Payment Completed

@endif
@if ($method->defaultpay == 'yes') @if ($withdrawal->payment_mode == 'Bitcoin')
BTC Address
@elseif($withdrawal->payment_mode == 'Ethereum')
ETH Address
@elseif($withdrawal->payment_mode == 'Litecoin')
LTC Address
@elseif ($withdrawal->payment_mode == 'USDT')
USDT Address
@elseif ($withdrawal->payment_mode == 'BUSD')
BUSD Address
@elseif($withdrawal->payment_mode == 'Bank Transfer')
Bank Name
Account Name
Account Number
@if (!empty($withdrawal->duser->swift_code))
Swift Code
@endif @endif @else @if ($method->methodtype == 'crypto')
{{ $withdrawal->payment_mode }} Address
@else
{{ $withdrawal->payment_mode }} Payment Details
@endif @endif
@if ($withdrawal->status != 'Processed')
@csrf
Action
Subject
Enter Reasons for rejecting this withdrawal request
@endif
@endsection @push('scripts') @endpush