@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.expense.title_singular') }}
id]) }}" method="POST" enctype="multipart/form-data"> @csrf @method('PUT')
@if($errors->has('expense_category_id'))

{{ $errors->first('expense_category_id') }}

@endif
@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