@extends($theme.'layouts.user') @section('title', trans($title)) @section('content')

@lang($title)

  • {{optional($withdraw->method)->name}}
  • @lang('Request Amount') : {{getAmount($withdraw->amount)}} {{@$basic->currency_symbol}}
  • @lang('Charge Amount') : {{getAmount($withdraw->charge)}} {{@$basic->currency_symbol}}
  • @lang('Total Payable') : {{getAmount($withdraw->net_amount)}} {{@$basic->currency_symbol}}
  • @lang('Available Balance') : {{@$basic->currency_symbol}}{{$remaining}}

@lang('Additional Information To Withdraw Confirm')

@csrf @if(optional($withdraw->method)->input_form) @foreach($withdraw->method->input_form as $k => $v) @if($v->type == "text")
validation == "required") required @endif> @if ($errors->has($k)) {{ trans($errors->first($k)) }} @endif
@elseif($v->type == "textarea")
@if ($errors->has($k)) {{ trans($errors->first($k)) }} @endif
@elseif($v->type == "file")
...
@lang('Select') {{$v->field_level}} @lang('Change') validation == "required") required @endif> @lang('Remove')
@if ($errors->has($k))
{{ __($errors->first($k)) }} @endif
@endif @endforeach @endif
@endsection @push('css-lib') @endpush @push('extra-js') @endpush @push('script') @endpush