Files
isaaccladandCursor 460edb8719
Deploy Ladill Hosting / deploy (push) Successful in 1m9s
Add first-class hosting subdomain create/attach in Domains panel.
Customers can create label-based subdomains under primary/addon sites with a separate max_domains×5 quota, nginx/docroot/SSL provisioning, and managed DNS A records when Ladill controls the parent zone.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-13 12:08:41 +00:00

23 lines
749 B
PHP

@php
$flashStyles = [
'success' => 'border-emerald-200 bg-emerald-50 text-emerald-800',
'info' => 'border-sky-200 bg-sky-50 text-sky-800',
'error' => 'border-red-200 bg-red-50 text-red-800',
];
@endphp
@foreach ($flashStyles as $key => $classes)
@if (session($key))
<div class="mb-4 rounded-lg border px-4 py-3 text-sm {{ $classes }}">{{ session($key) }}</div>
@endif
@endforeach
@if (isset($errors) && $errors->any())
<div class="mb-4 rounded-lg border border-red-200 bg-red-50 px-4 py-3 text-sm text-red-800">
<ul class="list-disc space-y-1 pl-5">
@foreach ($errors->all() as $err)
<li>{{ $err }}</li>
@endforeach
</ul>
</div>
@endif