404.blade.php 292 B

12345678910111213
  1. @extends('layouts.app')
  2. @section('content')
  3. @include('partials.page-header')
  4. @if (! have_posts())
  5. <x-alert type="warning">
  6. {!! __('Sorry, but the page you are trying to view does not exist.', 'sage') !!}
  7. </x-alert>
  8. {!! get_search_form(false) !!}
  9. @endif
  10. @endsection