--- extends: _layouts.post section: content title: Custom 404 Pages date: 2018-12-23 description: Add a custom 404 page is easy with Jigsaw tags: [PHP] --- This starter template includes a custom __404 Not Found__ error page, located at `/source/404.blade.php`. [To preview the 404 page](/404), you can visit `/404` in your browser. ```html @extends('_layouts.master') @section('body')
@endsection ``` --- Depending on where your site is hosted, you may need to configure your server to use the custom 404 page. For more details, visit the [Jigsaw documentation about configuring a custom 404 page](https://jigsaw.tighten.co/docs/custom-404-page/).