{{ __('Update '. $menu->name)}}
@csrf
Store is Required
@error('restaurant_id') {{ $message }} @enderror
Category is Required
@error('store_category_id') {{ $message }} @enderror
Sub Category is Required
@error('category_id') {{ $message }} @enderror
Name is Required
@error('name') {{ $message }} @enderror
{!! Form::select('pricing_type', $pricing_types, $menu->pricing_type,[ 'class'=>'form-control pricing-type select2', 'placeholder' => 'Select Pricing Type', 'id'=>'pricing_type_update' ]) !!}
Pricing Type is Required
@error('pricing_type') {{ $message }} @enderror
Price is Required
@error('price') {{ $message }} @enderror
{{ __("You can't add price if pricing type not value")}}
Description is Required
{!! Form::select('rank', $fromOneToOneHundred, $menu->rank,[ 'class'=>'form-control select2', 'placeholder' => 'Select Rank' ]) !!}
Rank is Required
Image must have extension jpg, jpeg, png
{!! Form::select('serving_count', $fromOneToTen, $menu->serving_count,[ 'class'=>'form-control select2', 'placeholder' => 'Select Serving Counter' ]) !!}
Serving Counter is Required
@error('serving_count') {{ $message }} @enderror
@if(isset($childs) )
{!! Form::select('childs[]', $childs, null,[ 'class'=>'form-control select2 auto-select-child', 'multiple' => 'multiple']) !!} @error('childs[]') {{ $message }} @enderror
@endif