@extends('layouts/contentLayoutMaster') @section('title', 'Add Ingredient') @section('page-style') {{-- Page Css files --}} @endsection @section('content') Edit Cuisine @method('PUT') {{ csrf_field() }} Cuisine Name (English) @if ($errors->first('name')) Cuisine Name Required @enderror Cuisine Name (Arabic) @if ($errors->first('local_name')) Cuisine Local Name Required @enderror Details (English) {{ old('details', $cuisine->details) }} @error('details') {{ $message }} @enderror Details (Local Language) {{ old('local_details', $cuisine->local_details) }} @error('local_details') {{ $message }} @enderror Submit Cancel @endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') @endsection