@extends('backend.layouts.master') @section('section-title', 'Account') @section('page-title', 'Withdraw') @if (check_permission('accounting.transaction-history')) @section('action-button') Transaction History @endsection @endif @section('content')
@csrf {{-- Date --}}
{{ ($errors->has('date'))?$errors->first('date'):''; }}
{{-- Account name --}}
{{ ($errors->has('bank_id'))?$errors->first('bank_id'):''; }}
{{-- Owner Name --}}
{{ ($errors->has('owner_id'))?$errors->first('owner_id'):''; }}
{{-- Withdraw Amount --}}
{{ ($errors->has('withdraw_amount'))?$errors->first('withdraw_amount'):''; }}
{{-- Details --}}
{{-- Submit Button --}}
@if (check_permission('withdraw-store')) @endif
@endsection @push('js') @endpush