9 lines
209 B
Smarty
9 lines
209 B
Smarty
{block name="errors"}
|
|
{if isset($errors) && !empty($errors)}
|
|
<div class="alert alert-warning" role="alert">
|
|
{foreach $errors as $e}
|
|
<p>{$e}</p>
|
|
{/foreach}
|
|
</div>
|
|
{/if}
|
|
{/block}
|