mirror of
https://github.com/ad-aures/castopod.git
synced 2026-03-31 21:39:20 +02:00
- enhance plugin card ui - refactor components to be more consistent - invert toggler label for better UX - edit view components regex
19 lines
586 B
PHP
19 lines
586 B
PHP
<?php declare(strict_types=1);
|
|
|
|
if (session()->has('message')): ?>
|
|
<x-Alert variant="success" class="mb-4"><?= esc(session('message')) ?></x-Alert>
|
|
<?php endif; ?>
|
|
|
|
<?php if (session()->has('error')): ?>
|
|
<x-Alert variant="danger" class="mb-4"><?= esc(session('error')) ?></x-Alert>
|
|
<?php endif; ?>
|
|
|
|
<?php if (session()->has('errors')): ?>
|
|
<x-Alert variant="danger" class="mb-4">
|
|
<ul>
|
|
<?php foreach (session('errors') as $error): ?>
|
|
<li><?= esc($error) ?></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</x-Alert>
|
|
<?php endif; ?>
|