11 lines
595 B
PHP
Executable File
11 lines
595 B
PHP
Executable File
<?php $__env->startSection('code', '404'); ?>
|
|
<?php $__env->startSection('title', __('Page Not Found')); ?>
|
|
|
|
<?php $__env->startSection('image'); ?>
|
|
<div style="background-image: url(<?php echo e(asset('/svg/404.svg')); ?>);" class="absolute pin bg-cover bg-no-repeat md:bg-left lg:bg-center">
|
|
</div>
|
|
<?php $__env->stopSection(); ?>
|
|
|
|
<?php $__env->startSection('message', __('Sorry, the page you are looking for could not be found.')); ?>
|
|
|
|
<?php echo $__env->make('errors::illustrated-layout', \Illuminate\Support\Arr::except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|