@php($title = 'Admin • Settings') @php($heading = 'Site Settings') @php($sidebar = view()->make('dashboard.partials.admin-sidebar')->render()) @extends('layouts.dashboard', compact('title','heading','sidebar')) @section('content')

Site Settings

Update general site configuration and homepage content.

@csrf

Branding

@php($brandLogoUrl = \App\Support\SiteSettings::get('brand_logo')) @if(!empty($brandLogoUrl))
Current brand logo
@endif

Max 4MB; PNG, JPG, SVG.


Header Menu (JSON)

Provide an array of items: [{"title":"Home","url":"/"}].

Footer Links (JSON)

Provide an array of items: [{"label":"Privacy","url":"/privacy"}].


SEO

@php($ogImageUrl = \App\Support\SiteSettings::get('seo_og_image')) @if(!empty($ogImageUrl))
Current OG image
@endif

Recommended 1200x630; Max 8MB.

Note: Submitting will show a status message; backend persistence is not implemented yet.

@endsection