@extends('layouts.admin') @section('content')
{{ trans('global.add') }} {{ trans('cruds.generalLedger.title_singular') }}
@csrf
@if ($errors->first('date'))
{{$errors->first('date')}}
@endif
{{ trans('cruds.generalLedger.fields.sub_category') }} {{ trans('cruds.generalLedger.fields.cashier') }} / {{ trans('cruds.generalLedger.fields.attendent') }} {{ trans('cruds.generalLedger.fields.amount') }} {{ trans('cruds.generalLedger.fields.detail') }}
@if($errors->first('sub_category.*'))
{{ $errors->first('sub_category.*') }}
@endif
@if($errors->first('cashier.*'))
{{ $errors->first('cashier.*') }}
@endif
@if($errors->first('amount.*'))
{{ $errors->first('amount.*') }}
@endif {{ trans('cruds.generalLedger.fields.amount_helper') }}
@if($errors->first('detail.*'))
{{ $errors->first('detail.*') }}
@endif {{ trans('cruds.generalLedger.fields.detail_helper') }}
@endsection @section('scripts') @endsection