@extends('layouts.admin') @section('title', 'Edit Cuisine') @section('content')
Edit Cuisine: {{ $cuisine->name }}
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@error('icon')
{{ $message }}
@enderror Font Awesome icon class (e.g., fas fa-pizza-slice)
@error('display_order')
{{ $message }}
@enderror Lower numbers appear first
@if($cuisine->image)
Cuisine Image
@else

No image uploaded

@endif @error('image')
{{ $message }}
@enderror Upload a new image to replace the current one
is_active) ? 'checked' : '' }}>
popular) ? 'checked' : '' }}>
Icon Preview

Current icon preview

Cuisine Status
{{ $cuisine->slug }}

{{ $cuisine->created_at->format('d M Y h:i A') }}

{{ $cuisine->updated_at->format('d M Y h:i A') }}

@endsection