Standardize settings pages on shared centered card layout.
Deploy Ladill Frontdesk / deploy (push) Successful in 46s

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-05 21:11:11 +00:00
co-authored by Cursor
parent d64a754227
commit c68f164ba4
4 changed files with 92 additions and 133 deletions
@@ -0,0 +1,11 @@
@props(['title' => 'Settings', 'description' => null])
<div {{ $attributes->merge(['class' => 'mx-auto max-w-3xl space-y-6']) }}>
<div>
<h1 class="text-2xl font-semibold text-slate-900">{{ $title }}</h1>
@if ($description)
<p class="mt-1 text-sm text-slate-500">{{ $description }}</p>
@endif
</div>
{{ $slot }}
</div>