@extends('layouts.admin') @section('content')

✏️ Edit Menu Item

{{ $vendor->vendor_name }} • {{ $item->bizspotMainCategory->name }}

Back to Menu @if($item->variants->count() > 0) Manage Variants ({{ $item->variants->count() }}) @endif
@if(session('success')) @endif @if($errors->any()) @endif
Edit "{{ $item->name }}" @if($item->is_featured) Featured @endif @if(!$item->is_available) Unavailable @endif
@csrf @method('PUT')
Basic Information
Main category cannot be changed. Create a new item in a different category if needed.
Pricing & Details
AED
Images
@if($item->images && is_array($item->images) && count($item->images) > 0)
@foreach($item->images as $image)
@endforeach
@endif
You can select multiple images. Accepted formats: JPG, PNG, GIF
Status & Availability
is_available) ? 'checked' : '' }}>
is_featured) ? 'checked' : '' }}>
Dietary Information
is_vegetarian) ? 'checked' : '' }}>
is_vegan) ? 'checked' : '' }}>
is_halal) ? 'checked' : '' }}>
is_spicy) ? 'checked' : '' }}>
Tags
Add descriptive tags to help customers find this item
🚀 Quick Actions
@csrf @method('PATCH')
@csrf @method('PATCH')
@csrf @method('DELETE')
@endsection