@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.transaction.title_singular') }}
@csrf
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.transaction.fields.amount_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') }}
@if($errors->has('user'))
{{ $errors->first('user') }}
@endif {{ trans('cruds.transaction.fields.user_helper') }}
@if($errors->has('order'))
{{ $errors->first('order') }}
@endif {{ trans('cruds.transaction.fields.order_helper') }}
@if($errors->has('payment'))
{{ $errors->first('payment') }}
@endif {{ trans('cruds.transaction.fields.payment_helper') }}
@if($errors->has('payment_date'))
{{ $errors->first('payment_date') }}
@endif {{ trans('cruds.transaction.fields.payment_date_helper') }}
@endsection