@extends('super_admins.layouts.master') @section('title') Edit Withdraw Request @endsection @section('css') @endsection @section('content') @if ($errors->any()) @foreach ($errors->all() as $error) {{-- {{ $error }} --}} @endforeach @endif Home Withdraw Requests Edit Withdraw Request {{-- --}} Edit Withdraw Request @csrf @method('PUT') Name @if ($errors->has('name')) {{ $errors->first('name') }} @endif {{-- Code @if ($errors->has('code')) {{ $errors->first('code') }} @endif --}} Amount @if ($errors->has('amount')) {{ $errors->first('amount') }} @endif Account Holder Name @if ($errors->has('account_holder')) {{ $errors->first('account_holder') }} @endif Acount Number @if ($errors->has('account_number')) {{ $errors->first('account_number') }} @endif Bank Name @if ($errors->has('bank')) {{ $errors->first('bank') }} @endif Additional Note {{$withdraw_request->additional_note}} Status status == 'pending') selected @endif value="pending"> Pending status == 'approved') selected @endif value="approved"> Approved status == 'rejected') selected @endif value="rejected"> Rejected @if ($errors->has('status')) {{ $errors->first('status') }} @endif Reaject Reason {{$withdraw_request->rejected_reason}} @if ($errors->has('status')) {{ $errors->first('status') }} @endif Update {{-- --}} @include('super_admins.includes.image_cropper_modal') @endsection @section('scripts') @include('super_admins.includes.image_cropper_scripts') @endsection