Sequenzia/app/views/shared/_error_messages.php

11 lines
306 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>
<?php foreach ($this->object->errors()->full_messages() as $msg) : ?>
<li><?= $msg ?></li>
<?php endforeach ?>
</ul>
</div>
<?php endif ?>