<?php $__env->startSection('content'); ?>
    <table class="main" width="100%" cellpadding="0" cellspacing="0">
        <tr>
            <td class="alert alert-warning">
                Error report by <?php echo e(!empty($user) ? $user->name : 'Visitor'); ?>

            </td>
        </tr>
        <?php /*<tr>
            <td class="content-wrap aligncenter">
                PLEASE DO NOT REPLY TO THIS EMAIL AS IT IS NOT MONITORED
            </td>
        </tr>*/ ?>
        <tr>
            <td class="content-wrap">
                <table width="100%" cellpadding="0" cellspacing="0">
                    <tr>
                        <td class="content-block aligncenter">
                            <table class="data">
                                <?php foreach($errors as $error): ?>
                                    <tr>
                                        <td>
                                            <table class="data-items" width="100%" cellpadding="0" cellspacing="0">
                                                <tr>
                                                    <td><strong>Request</strong></td>
                                                    <td><?php echo e($error->request); ?></td>
                                                </tr>
                                                <tr>
                                                    <td><strong>Page</strong></td>
                                                    <td><?php echo e($error->page); ?></td>
                                                </tr>
                                                <tr>
                                                    <td><strong>Date</strong></td>
                                                    <td><?php echo e(date('d/m/Y H:i', strtotime($error->date))); ?></td>
                                                </tr>
                                            </table>
                                        </td>
                                    </tr>
                                <?php endforeach; ?>
                            </table>
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
    </table>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('emails.layout', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>