{{ ($recipe->exists ? "Edit {$recipe->name}" : 'Add Recipe') }}

@if ($recipe->exists)@method('put')@endif @csrf

Ingredients

@foreach($ingredients as $ingredient) @include('recipes.partials.ingredient-input', $ingredient) @endforeach

Steps

@if(old('steps')) @foreach(old('steps') as $i => $step_default) @if (empty($step)) @continue @endif @include('recipes.partials.step-input') @endforeach @else @foreach($recipe->steps as $step) @include('recipes.partials.step-input', ['step_default' => $step->step]) @endforeach @endif
{{ ($recipe->exists ? 'Save' : 'Add') }}