 <?php if(count($errors) > 0): ?>
    <div class="alert alert-danger">
        <h5>The following errors were found with your request:</h5>
        <ul>
            <?php foreach($errors->all() as $error): ?>
                <li><?php echo e($error); ?></li>
            <?php endforeach; ?>
        </ul>
    </div>
<?php endif; ?>
