Files
bedrock/resources/views/404.blade.php
2017-09-12 16:04:15 -06:00

13 lines
294 B
PHP

@extends('layouts.app')
@section('content')
@include('partials.page-header')
@if (!have_posts())
<div class="alert alert-warning">
{{ __('Sorry, but the page you were trying to view does not exist.', 'sage') }}
</div>
{!! get_search_form(false) !!}
@endif
@endsection