@extends('layouts.admin') @section('title', 'Home page sections') @section('content')
@csrf @method('PUT')

Sections & order

Choose which sections appear on the home page and the order they appear in. Lower numbers come first. Each section pulls its content from the matching module — nothing here duplicates content.

@foreach ($sections as $key => $section)

{{ $section['label'] }}

{{ $section['description'] }}

@if ($section['locked']) Always shown @else @endif
@endforeach
Preview home page
@endsection