View file themes/default/templates/system/app/alert.phtml

File size: 206B
<?php
/**
 * @var $alert
 */
?>
<?php if (! empty($alert)): ?>
    <div class="alert <?= $alert_type ?? '' ?>">
        <?= is_array($alert) ? implode('<br>', $alert) : $alert ?>
    </div>
<?php endif; ?>