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

Edit Menu: {{ $menu->name }}

Menu Settings
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@php use App\Support\MenuLocations; $locations = MenuLocations::all($website); $assignedLocations = $website->menus->where('id', '!=', $menu->id)->pluck('location')->toArray(); @endphp
@error('location')
{{ $message }}
@enderror
Add Menu Item
Menu Structure
Drag items to reorder or nest them
@if($items->count() > 0) @else

No menu items yet. Add one using the form on the left.

@endif
Back to All Menus
@push('styles') @endpush @push('scripts') @endpush @endsection