Sequenzia/app/views/shared/_error_messages.php

11 lines
305 B
PHP
Raw Normal View History

2013-10-27 01:06:58 +02:00
<?php if (!$this->object->errors()->blank()) : ?>
<div id="error_explanation">
There were problems with the following fields:
<ul>
2013-12-01 18:20:16 +01:00
<?php foreach ($this->object->errors()->fullMessages() as $msg) : ?>
2013-10-27 01:06:58 +02:00
<li><?= $msg ?></li>
<?php endforeach ?>
</ul>
</div>
<?php endif ?>