@include('Commonheader', ['page_title' => 'Edit Ingredient'])
@include('sidebar')
@include('restaurant.navbar')
Edit Ingredient
@csrf
Ingredient Name
Unit
@php $units = ['kg', 'gram', 'liter', 'ml', 'pcs', 'box', 'pack']; @endphp @foreach ($units as $unit)
unit === $unit ? 'selected' : '' }}> {{ ucfirst($unit) }}
@endforeach
Back to Ingredient List
Update Ingredient
@include('Commonfooter')
@include('Commonscript')