17 lines
715 B
PHP
17 lines
715 B
PHP
<?php
|
|
$error_number = 404;
|
|
?>
|
|
|
|
<?php $__env->startSection('title'); ?>
|
|
Page not found.
|
|
<?php $__env->stopSection(); ?>
|
|
|
|
<?php $__env->startSection('description'); ?>
|
|
<?php
|
|
$default_error_message = "Please <a href='javascript:history.back()''>go back</a> or return to <a href='".url('')."'>our homepage</a>.";
|
|
?>
|
|
<?php echo isset($exception)? ($exception->getMessage()?e($exception->getMessage()):$default_error_message): $default_error_message; ?>
|
|
|
|
<?php $__env->stopSection(); ?>
|
|
|
|
<?php echo $__env->make('errors.layout', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\xampp2\htdocs\exchange\resources\views/errors/404.blade.php ENDPATH**/ ?>
|