@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.expense.title_singular') }}
@csrf
@if($errors->has('expense_category'))
{{ $errors->first('expense_category') }}
@endif {{ trans('cruds.expense.fields.expense_category_helper') }}
@if($errors->has('entry_date'))
{{ $errors->first('entry_date') }}
@endif {{ trans('cruds.expense.fields.entry_date_helper') }}
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.expense.fields.amount_helper') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.expense.fields.description_helper') }}
@endsection