@extends('layouts/contentLayoutMaster') @section('title', 'Add Ingredient') @section('page-style') {{-- Page Css files --}} @endsection @section('content')

Edit Cuisine

@method('PUT') {{ csrf_field() }}
@if ($errors->first('name'))
Cuisine Name Required
@enderror
@if ($errors->first('local_name'))
Cuisine Local Name Required
@enderror
@error('details')
{{ $message }}
@enderror
@error('local_details')
{{ $message }}
@enderror
Cancel
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') @endsection