mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- update CI4 to v4.1.9's stable production package - update php and js dependencies to latest
20 lines
574 B
PHP
20 lines
574 B
PHP
<?php declare(strict_types=1);
|
|
|
|
if (session()->has('message')): ?>
|
|
<Alert variant="success" class="mb-4"><?= esc(session('message')) ?></Alert>
|
|
<?php endif; ?>
|
|
|
|
<?php if (session()->has('error')): ?>
|
|
<Alert variant="danger" class="mb-4"><?= esc(session('error')) ?></Alert>
|
|
<?php endif; ?>
|
|
|
|
<?php if (session()->has('errors')): ?>
|
|
<Alert variant="danger" class="mb-4">
|
|
<ul>
|
|
<?php foreach (session('errors') as $error): ?>
|
|
<li><?= esc($error) ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</Alert>
|
|
<?php endif; ?>
|