@extends('backend.layouts.app') @section('title', 'Edit Page') @push('styles') @endpush @section('content') @php $pageTitle = 'Edit Page'; $indexRoute = 'frontend-site.pages.index'; $indexLabel = 'Pages'; $indexRouteParams = ['site_id' => $page->site_fk]; $parentRoute = 'frontend-site.sites.index'; $parentLabel = 'Sites'; $componentCodes = $components->pluck('code')->toArray(); $componentBlocks = $components->map(fn($c) => ['code' => $c->code, 'name' => $c->name])->values()->toArray(); $grouped = $components->groupBy('category'); @endphp @include('backend.layouts.partials._page_header')
Update your page and component assignment.