@extends('layouts.frontend') @section('content')
{{ trans('global.edit') }} {{ trans('cruds.itemManagement.title_singular') }}
id]) }}" enctype="multipart/form-data"> @method('PUT') @csrf
@if($errors->has('meal_name'))
{{ $errors->first('meal_name') }}
@endif {{ trans('cruds.itemManagement.fields.meal_name_helper') }}
@if($errors->has('price_of_item'))
{{ $errors->first('price_of_item') }}
@endif {{ trans('cruds.itemManagement.fields.price_of_item_helper') }}
@if($errors->has('company_contribution'))
{{ $errors->first('company_contribution') }}
@endif {{ trans('cruds.itemManagement.fields.company_contribution_helper') }}
@if($errors->has('employee_contribution'))
{{ $errors->first('employee_contribution') }}
@endif {{ trans('cruds.itemManagement.fields.employee_contribution_helper') }}
@if($errors->has('menu_image'))
{{ $errors->first('menu_image') }}
@endif {{ trans('cruds.itemManagement.fields.menu_image_helper') }}
@if($errors->has('description'))
{{ $errors->first('description') }}
@endif {{ trans('cruds.itemManagement.fields.description_helper') }}
@foreach(App\Models\ItemManagement::DISPLAY_STATUS_RADIO as $key => $label)
display_status) === (string) $key ? 'checked' : '' }} required>
@endforeach @if($errors->has('display_status'))
{{ $errors->first('display_status') }}
@endif {{ trans('cruds.itemManagement.fields.display_status_helper') }}
@if($errors->has('sorting_order'))
{{ $errors->first('sorting_order') }}
@endif {{ trans('cruds.itemManagement.fields.sorting_order_helper') }}
@endsection @section('scripts') @endsection