- Replaced deprecated `flux` components with `maryUI` counterparts (`flux:input` → `x-mary-input`, `flux:button` → `x-mary-button`, etc.). - Removed unused partials (`settings-heading.blade.php`) and outdated structures from Blade files. - Adjusted Livewire modal, form, and button implementations for consistency with `maryUI`. - Streamlined layout and theme styling for improved maintainability and readability.
11 lines
343 B
PHP
11 lines
343 B
PHP
<div class="flex items-start max-md:flex-col">
|
|
<div class="flex-1 self-stretch pt-6">
|
|
<p class="text-xl text-gray-700 mb-2 font-medium">{{ $heading ?? '' }}</p>
|
|
<p class="text-sm text-gray-500">{{ $subheading ?? '' }}</p>
|
|
|
|
<div class="mt-5 w-full max-w-lg">
|
|
{{ $slot }}
|
|
</div>
|
|
</div>
|
|
</div>
|