@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100']) @section('content') @include('layouts.navbars.auth.topnav', ['title' => 'Edit'])
@include('components.alert')
@csrf
Edit Food Product
Submit
Food Product Info
Food Product Photo
Food Product Name
Food Product Description
{{ $dish->dish_description }}
Ingredients
@foreach ($dish->recipes as $recipe)
Select Ingredient
@foreach ($ingredientList as $ingredientItem)
ingredient_ID == $recipe->ingredient_ID) selected @endif> {{ $ingredientItem->ingredient_name }}
@endforeach
@endforeach
+
-
@include('layouts.footers.auth.footer')
@endsection