{!! 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 }}

Wallet Balance : {{ $wallet_balance }}

@if(!is_null($user_pay_id))

{{ $user->payment_processor }} Id : {{ $user_pay_id }}

@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') }}
@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
Type Tran-From Tran-To Amount
@foreach($data as $key => $value)
{{ $value->tran_type }} {{ $value->tran_from }} {{ $value->tran_to }} {{ $value->amount }}
@endforeach
{{ Form::close() }}