%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php
/**
* Partial: menampilkan flash message (notifikasi sekali tampil).
*/
$flashes = get_flashes();
if (!empty($flashes)):
$style = [
'success' => ['bg-green-50 border-green-200 text-green-800', 'fa-circle-check'],
'error' => ['bg-red-50 border-red-200 text-red-700', 'fa-circle-xmark'],
'warning' => ['bg-amber-50 border-amber-200 text-amber-700', 'fa-triangle-exclamation'],
'info' => ['bg-blue-50 border-blue-200 text-mateng-blue', 'fa-circle-info'],
];
?>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 mt-4 space-y-3">
<?php foreach ($flashes as $f):
[$cls, $icon] = $style[$f['type']] ?? $style['info']; ?>
<div class="flex items-start gap-3 border rounded-xl px-4 py-3 text-sm shadow-sm <?= $cls ?>">
<i class="fas <?= $icon ?> mt-0.5"></i>
<span><?= e($f['message']) ?></span>
</div>
<?php endforeach; ?>
</div>
<?php endif; ?>