@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.transaction.title_singular') }}
@csrf
@if($errors->has('project_id'))

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

@endif
@if($errors->has('transaction_type_id'))

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

@endif
@if($errors->has('income_source_id'))

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

@endif
@if($errors->has('amount'))

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

@endif

{{ trans('cruds.transaction.fields.amount_helper') }}

@if($errors->has('currency_id'))

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

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