@extends('vendors.layout') @section('content')
{{ __('Make a Withdrawal Request') }}
{{ __('Your Balance') }} : {{ $settings->base_currency_symbol_position == 'left' ? $settings->base_currency_symbol : '' }} {{ Auth::guard('vendor')->user()->amount }} {{ $settings->base_currency_symbol_position == 'right' ? $settings->base_currency_symbol : '' }}
@csrf @if ($errors->any())

{{ __('Opps Something went wrong') }}

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

@if (Session::has('error'))

{{ Session::get('error') }}

@endif

{{ __('You will receive') . ' : ' }}0, {{ __('Total Charge') . ' : ' }}0, {{ __('Your Balance will be') . ' : ' }}0

@if ($errors->has('additional_reference'))

{{ $errors->first('additional_reference') }}

@endif
@endsection @section('script') @endsection