@extends('layouts.users') @section('content')
@if($withdraw->is_bonus)
@lang('Bonus Balance') : {{ showAmount(auth()->user()->bonus_balance)}} {{ __($general->cur_text) }}
@else
@lang('Current Balance') : {{ showAmount(auth()->user()->balance)}} {{ __($general->cur_text) }}
@endif
@csrf
@lang('Amount') : {{showAmount($withdraw->amount) }} {{__($general->cur_text)}}
@lang('Charges') : {{showAmount($withdraw->charge) }} {{__($general->cur_text)}}
@lang('Amount After Charge') : {{showAmount($withdraw->after_charge) }} {{__($general->cur_text)}}
@if($withdraw->is_bonus)
@lang('Balance After withdrawal') : {{__($general->cur_sym)}} {{showAmount($withdraw->user->bonus_balance - ($withdraw->amount))}}
@else
@lang('Balance After withdrawal') : {{__($general->cur_sym)}} {{showAmount($withdraw->user->balance - ($withdraw->amount))}}
@endif @if($withdraw->is_bank)
Account Details

Account Name: {{ auth()->user()->bankAccount->account_name }}

Account Number: {{ auth()->user()->bankAccount->account_number }}

Bank Name: {{ auth()->user()->bankAccount->bank_name }}

@endif @if(auth()->user()->bankAccount) @endif @if($withdraw->method->user_data) @foreach($withdraw->method->user_data as $k => $v) @if($v->type == "text")
is_bank) readonly @endif name="{{$k}}" class="form-control" value="{{old($k)}}" placeholder="{{__($v->field_level)}}" @if($v->validation == "required") required @endif> @if ($errors->has($k)) {{ __($errors->first($k)) }} @endif
@elseif($v->type == "textarea")
@if ($errors->has($k)) {{ __($errors->first($k)) }} @endif
@elseif($v->type == "file")
@lang('Image')
@lang('Select') {{__($v->field_level)}} @lang('Change') validation == "required") required @endif> @lang('Remove')
@if ($errors->has($k))
{{ __($errors->first($k)) }} @endif
@endif @endforeach @endif {{--


Get Verification Code
--}}
@endsection @push('script-lib') @if($withdraw->is_bank) @endif @endpush @push('style-lib') @endpush @push('script') @if($withdraw->is_bank) @endif @endpush @push('style') @endpush