@extends('layouts.admin') @section('content') @push('css') @endpush
Create Withdraw Request
@csrf
User Name: {{$user->name}}, ID: {{$user->user_id}} Phone: {{$user->phone_number}} Email: {{$user->email}} Total Available Balance: {{ number_format(total_available_balance($user->id)) }}
@if ($errors->has('amount')) {{ $errors->first('amount') }} @endif
@if ($errors->has('withdraw_date')) {{ $errors->first('withdraw_date') }} @endif
@if ($errors->has('issue_date')) {{ $errors->first('issue_date') }} @endif
@if ($errors->has('cheque_bank_id')) {{ $errors->first('cheque_bank_id') }} @endif
@if ($errors->has('type')) {{ $errors->first('type') }} @endif
@if ($errors->has('cheque_name')) {{ $errors->first('cheque_name') }} @endif
@push('alljs') @endpush @endsection