coolify/resources/views/components/auth/shell.blade.php
Andras Bacsai 8ae56587d5
feat(ui): Shadow UI redesign, domain management, and DNS autoconfigure (#11119)
Co-authored-by: ShadowArcanist <162910371+ShadowArcanist@users.noreply.github.com>
2026-08-03 23:11:54 +02:00

27 lines
669 B
PHP

@props([
'title',
'description' => null,
])
<section class="auth-shell application-settings-form">
<div class="auth-shell-content">
<div class="auth-card">
<div class="auth-card-heading">
<h1>{{ $title }}</h1>
@if ($description)
<p>{{ $description }}</p>
@endif
</div>
<div class="auth-card-body">
{{ $slot }}
</div>
@isset($footer)
<footer class="auth-card-footer">
{{ $footer }}
</footer>
@endisset
</div>
</div>
</section>