@extends('layouts/contentLayoutMaster') @section('title', 'Edit Ingredient') @section('page-style') {{-- Page Css files --}} @endsection @section('content') Edit 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) category_id == $cat->id)? 'selected':'' }} > {{ $cat->name }} / {{ $cat->local_name }} @endforeach Submit @endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') @endsection