@extends('backend.layouts.master') @section('section-title', 'Account') @section('page-title', 'Deposit') @if (check_permission('account.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'):''; }}
{{-- Deposit Amount --}}
{{ ($errors->has('deposit_amount'))?$errors->first('deposit_amount'):''; }}
{{-- Details --}}
{{-- Submit Button --}}
@if (check_permission('deposit-store')) @endif
@endsection