e6f38d9481
* docs: remove requirement for setting APP_KEY manually * optimize date picker * clean up modals * spot light working * reorganization * add lazy load * wip * remove filament * styling
13 lines
428 B
PHP
13 lines
428 B
PHP
<div {{ $attributes->merge(['class' => 'md:grid md:grid-cols-3 md:gap-6']) }}>
|
|
<x-forms.section-title>
|
|
<x-slot name="title">{{ $title }}</x-slot>
|
|
<x-slot name="description">{{ $description }}</x-slot>
|
|
</x-forms.section-title>
|
|
|
|
<div class="mt-5 md:mt-0 md:col-span-2">
|
|
<div class="px-4 py-5 sm:p-6 bg-base-100 shadow sm:rounded-lg">
|
|
{{ $content }}
|
|
</div>
|
|
</div>
|
|
</div>
|