@extends('layouts.app') @section('title', 'Website Content') @section('page-title', 'Website Content') @section('breadcrumb', 'Platform Admin / Website Content') @section('content')

Manage marketing website content — hero slider, homepage sections, testimonials, and brand details. Changes appear on the public site immediately.

Preview website
@foreach($sections as $section)

{{ $section['label'] }}

{{ $section['description'] }}

{{ $section['is_customized'] ? 'Custom' : 'Default' }}
{{ ucfirst($section['group']) }} @if($section['updated_at']) Updated {{ $section['updated_at']->diffForHumans() }} @else Using defaults @endif
@endforeach
@endsection