Cool-Shopping-Site/error.php

7 lines
180 B
PHP
Raw Normal View History

2024-05-17 20:57:41 +00:00
<?php if (count($errors) > 0) : ?>
<div class="error">
<?php foreach ($errors as $error) : ?>
<p><?php echo $error ?></p>
<?php endforeach ?>
</div>
<?php endif ?>