Files
ladill-pos/resources/views/components/settings/page.blade.php
T
isaaccladandCursor ac5e513dd2
Deploy Ladill POS / deploy (push) Successful in 41s
Standardize settings pages on shared centered card layout.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-05 21:11:48 +00:00

12 lines
367 B
PHP

@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>