14 lines
692 B
PHP
14 lines
692 B
PHP
@if (session('status'))
|
|
<div
|
|
class="mb-6 flex items-start gap-3 rounded-lg border border-emerald-200 bg-emerald-50 px-4 py-3 text-sm text-emerald-900 shadow-sm"
|
|
role="status"
|
|
>
|
|
<span class="mt-0.5 shrink-0 text-emerald-600" aria-hidden="true">
|
|
<svg class="h-5 w-5" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
|
|
</svg>
|
|
</span>
|
|
<p class="min-w-0 flex-1 font-medium leading-snug">{{ session('status') }}</p>
|
|
</div>
|
|
@endif
|