@extends('layouts.frontend') @section('content')
{{ trans('global.create') }} {{ trans('cruds.transaction.title_singular') }}
@method('POST') @csrf
@if($errors->has('project'))
{{ $errors->first('project') }}
@endif {{ trans('cruds.transaction.fields.project_helper') }}
@if($errors->has('transaction_type'))
{{ $errors->first('transaction_type') }}
@endif {{ trans('cruds.transaction.fields.transaction_type_helper') }}
@if($errors->has('income_source'))
{{ $errors->first('income_source') }}
@endif {{ trans('cruds.transaction.fields.income_source_helper') }}
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.transaction.fields.amount_helper') }}
@if($errors->has('currency'))
{{ $errors->first('currency') }}
@endif {{ trans('cruds.transaction.fields.currency_helper') }}
@if($errors->has('transaction_date'))
{{ $errors->first('transaction_date') }}
@endif {{ trans('cruds.transaction.fields.transaction_date_helper') }}
@if($errors->has('name'))
{{ $errors->first('name') }}
@endif {{ trans('cruds.transaction.fields.name_helper') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.transaction.fields.description_helper') }}
@endsection