{!! Form::model($user,array('url' => '/inr_transfer/inrrequest', 'files' => true, 'id' => 'withdraw-form', 'class' => 'm-form m-form--fit m-form--label-align-right', 'autocomplete' => 'on')) !!} {{--
--}}
  • Transaction ID: {{ $user->our_transaction_id }}
  • Balance: {{ $wallet_balance }}
  • @if(!is_null($user_pay_id))
  • {{ $user->payment_processor }} Id : {{ $user_pay_id }}
  • @endif @if(!empty($user->kotani_request_json)) @php $kotani_request_json = json_decode($user->kotani_request_json,true); @endphp
  • Customer Key : {{ $kotani_request_json['customer_result']['data']['customer_key'] }}
  • Phone Number : {{ $kotani_request_json['customer_result']['data']['phone_number'] }}
  • @endif
{{ Form::CtText('wallet_id',null,['required , readonly'],'Wallet Id ') }} {{ Form::CtText('amount',null,['required'],'Amount','','number') }}
{!! Html::decode(Form::label('status','Status :')) !!} {!!Form::select('status', $status, null, ['class' => 'form-control','id'=>'status'])!!} {!! $errors->first('status', ':message') !!}
{{ Form::CtText('payment_processor',null,['required , readonly'],'Payment Processor','*') }}
{{ Form::CtSelect('admin_note', $admin_note_option,'','',['class' => 'form-control'],'Note of Admin *',false) }}
{{ Form::CtText('admin_note',null,[''],'Note of Admin','*') }}
{{ (($is_selected_note == true) ? 'Custom Note' : 'Selected Note') }}
@if($user->payment_processor == 'WireTransfer' || $user->payment_processor == 'LocalExchange')
{!! Html::decode(Form::label('tran_from_bank','Transfer From :')) !!} {!!Form::select('tran_from_bank', array("" => "Select Bank")+$bank_list, null, ['class' => 'form-control','id'=>'tran_from_bank'])!!} {!! $errors->first('tran_from_bank', ':message') !!}
@endif
@if($user->payment_processor == 'WireTransfer' || $user->payment_processor == 'LocalExchange')
{{ Form::CtText('dollar_rate',null,[],'Dollar Rate','','number') }}
@else
{!! $cryptoString !!}
@endif

@if($localExchangeString) {!! $localExchangeString !!}
@endif @if($user->payment_processor == 'WireTransfer' && !empty($bank_details))
Bank Name : {{ $bank_details['bank_name'] }}
Beneficiary Name : {{ $bank_details['beneficiary_name'] }}
{{ strtolower($user_info->country) == 'india' ? 'Account No' : 'IBAN' }} : {{ $bank_details['account_no'] }}
{{ strtolower($user_info->country) == 'india' ? 'IFSC Code' : 'Swift Code' }} : {{ strtoupper($bank_details['ifsc_code']) }}
Branch Name : {{ str_replace(","," ",$bank_details['branch_name']) }}
Amount : {{ round($user->amount * $user->dollar_rate, 0) }}
@endif
Gateway Deposit Withdraw Available
@foreach(array_keys($dbal) as $gateway)
{{ $gateway }} {{ number_format($dbal[$gateway], 2) }} @if($gateway == 'Wire') @if(isset($wbal['WireTransfer'])) {{ number_format($wbal['WireTransfer'], 2) }} @else {{ $wbal['WireTransfer'] = 0 }} @endif @else @if(isset($wbal[$gateway])) {{ number_format($wbal[$gateway], 2) }} @else {{ $wbal[$gateway] = 0 }} @endif @endif @if($gateway == 'Wire') {{ number_format($dbal[$gateway] - $wbal['WireTransfer'], 2) }} @else {{ number_format($dbal[$gateway] - $wbal[$gateway], 2) }} @endif
@endforeach
{{ Form::close() }}