Files
fluent-chat/resources/views/components/settings/layout.blade.php

13 lines
452 B
PHP

<div class="rounded-xl border border-zinc-200 bg-white p-5 shadow-sm dark:border-zinc-800 dark:bg-zinc-900 sm:p-6">
<div class="flex flex-col gap-2 sm:flex-row sm:items-start sm:justify-between">
<div>
<flux:heading>{{ $heading ?? '' }}</flux:heading>
<flux:subheading>{{ $subheading ?? '' }}</flux:subheading>
</div>
</div>
<div class="mt-6 w-full max-w-2xl">
{{ $slot }}
</div>
</div>