@extends('layouts.admin') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.cashierSale.title._singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('date'))
{{ $errors->first('date') }}
@endif {{ trans('cruds.cashierSale.fields.date_helper') }}
@if($errors->has('sub_category'))
{{ $errors->first('sub_category') }}
@endif {{ trans('cruds.cashierSale.fields.sub_category_helper') }}
@if($errors->has('cashier_id'))
{{ $errors->first('cashier_id') }}
@endif {{ trans('cruds.cashierSale.fields.cashier_helper') }}
@if($errors->has('amount'))
{{ $errors->first('amount') }}
@endif {{ trans('cruds.cashierSale.fields.amount_helper') }}
@if($errors->has('detail'))
{{ $errors->first('detail') }}
@endif {{ trans('cruds.cashierSale.fields.detail_helper') }}
{{-- --}}
@endsection