Following steps that help you to customize 404 not found page
Step 1: Create a new view file to customize 404 files
Filename :-> 404.blade.php
File Path :-> /resources/views/errors/404.blade.php
Example for bootstrap 4 layout
@extends('layouts.app') @section('title','404')
@section('content')
<!-- example for bootstrap 4 layout -->
<div class="page-wrap d-flex flex-row align-items-center">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-12 text-center">
<span class="display-1 d-block">404</span>
<div class="mb-4 lead">The page you are looking for was not found.</div>
<a href="{{ url('/')}}" class="btn btn-link">Back to Home</a>
</div>
</div>
</div>
</div>
@endsection
Now you can simply run your application by following command:
php artisan serve
We are Recommending you:
- Laravel 8 .htaccess file for php 8
- Integrate Zoho SMTP Mail Configurations in Laravel?
- Laravel's .htaccess to remove "public" from URL
- How to change timezone in laravel 8
- Laravel 8/7 Overwriting the Default Pagination System
- How to use soft delete in Laravel?
- How to create real time sitemap.xml file in Laravel
- Why Use the Repository Pattern in a Laravel Application
- Laravel 8 multi auth login
Master Your Time with the 80/20 Rule: A...
Get Control of Your Time: 6 Easy Ways...
India’s startup space is booming in 2025....
India breeds dreamers who build empires....
In this tutorial, I would like to share with...
There is two way to remove public from...
Get Control of Your Time: 6 Easy Ways...
When We talk about Linux commands, what we...
The 7 Habits of Highly Effective...