@extends('back.layouts.main') @section('title','Add Transaction') @section('content-header')

Add Transaction

@endsection @section('content')
@csrf @method('post')
* signed fields are mandatory
@if ($errors->has('date')){{ $errors->first('date') }}@endif
@if ($errors->has('amount')){{ $errors->first('amount') }}@endif
@if ($errors->has('user_id')){{ $errors->first('user_id') }}@endif
@if ($errors->has('reference')){{ $errors->first('reference') }}@endif
@if ($errors->has('note')){{ $errors->first('note') }}@endif
Transaction Type
@if ($errors->has('type')){{ $errors->first('type') }} @endif
Transaction For
@if ($errors->has('for')){{ $errors->first('for') }} @endif
Publish
@endsection @push('custom-css-scripts') @endpush @push('custom-js-scripts') @endpush @push('custom-js') @endpush