@extends('layouts/contentLayoutMaster') @section('title', 'Add Ingredient') @section('page-style') {{-- Page Css files --}} @endsection @section('content') ADD Ingredient {{csrf_field()}} Ingredient Name @if($errors->first('name')) Ingredient Name Required @enderror Ingredient Local Name @if($errors->first('local_name')) Ingredient Local Name Required @enderror Select Ingredients Categories new Select @foreach($category as $cat) id == old('ingredients_categories') ? 'selected':'') }} > {{ $cat->name }} / {{ $cat->local_name }} @endforeach Submit Reset @endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') @endsection