404.blade.php 306 B

12345678910
  1. @extends('errors::illustrated-layout')
  2. @section('title', __('Not Found'))
  3. @section('code', '404')
  4. @section('message', __('Not Found'))
  5. @section('image')
  6. <div style="background-image: url({{ asset('/svg/404.svg') }});" class="absolute pin bg-cover bg-no-repeat md:bg-left lg:bg-center">
  7. </div>
  8. @endsection