mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 12:23:48 +00:00
28 lines
669 B
PHP
28 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>
|