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