@extends('layouts.app') @section('title', 'Edit Recipe') @section('content')

Edit Recipe: {{ $recipe->product->name_ar ?? $recipe->product->name_en ?? $recipe->product->name }}

Back to List
@if($errors->any())
@endif
@csrf @method('PUT')
Ingredients & Sub-Products
@foreach($recipe->ingredients as $index => $item)
{{-- Ingredient Select --}} {{-- Sub-Product Select --}}
@endforeach
@endsection