@extends('layouts.admin') @section('title','Create Ingredient') @section('content')
{{-- Back --}} reply

Add New Ingredient


{{-- Validation Errors --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- Form --}}
@csrf {{-- Ingredient Name --}}
{{-- Ingredient Categories --}}
@foreach($categories as $category)
id, old('categories', [])) ? 'checked' : '' }} >
@endforeach
Select one or more recipe categories
{{-- Submit --}}
@endsection