@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.income.title_singular') }}
@method('POST') @csrf
@if($errors->has('income_category'))
{{ $errors->first('income_category') }}
@endif {{ trans('cruds.income.fields.income_category_helper') }}
@if($errors->has('entry_date'))
{{ $errors->first('entry_date') }}
@endif {{ trans('cruds.income.fields.entry_date_helper') }}
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.income.fields.amount_helper') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.income.fields.description_helper') }}
@endsection