Sequenzia/app/views/shared/_error_messages.php
2013-12-01 12:20:16 -05:00

11 lines
305 B
PHP
Executable File

<?php if (!$this->object->errors()->blank()) : ?>
<div id="error_explanation">
There were problems with the following fields:
<ul>
<?php foreach ($this->object->errors()->fullMessages() as $msg) : ?>
<li><?= $msg ?></li>
<?php endforeach ?>
</ul>
</div>
<?php endif ?>