@extends('admin.layouts.app') @section('title', 'Manage Page') @section('content')

{{ $page->name }} - Sections

Page type: {{ $page->page_type }}

@if($isDedicated)
This is a dedicated module page (Events/Success Stories). Manage it from its own module CMS, not from Section Manager.
@else
@csrf @method('PUT')

Select and Order Sections

Use Up/Down to arrange order. Checked items will be saved.

@foreach($sections as $section) @php $checked = in_array((string) $section->id, array_map('strval', old('section_ids', $selectedIds))); @endphp

{{ $section->name }}

{{ $section->section_type }} | {{ $section->title }}

@endforeach
Back
@endif @endsection