How to create custom 404 error page in Laravel 5.7?
In this post we will give you information about How to create custom 404 error page in Laravel 5.7?. Hear we will give you detail about How to create custom 404 error page in Laravel 5.7?And how to use it also give you demo for it if it is necessary.
Hi Developer,
Today we will talk about who to create custom error page in laravel 5.7. As we know laravel 5.7 updated by default 404 error page and this is a cool. But if you want to add your own custom theme 404 page or custom design of error page then you can do it with laravel 5.7.
Almost we are using theme for front-end or backend side and we always looking for set 404, 500 or 505 error page design from there that we used for project. So it is a very simple and easy way to create custom 404 page in laravel 5.7 project. i added below screen shot of laravel 5.7 error page design.
Default 404 Page:
Now you have to just create “errors” folder in your resources directory and then after you need to create 404.blade.file inside that folder. So, basically laravel will stetted default design, but if you created 404 file into “errors” directory then it will take from there.
So, you just need to create 404 blade file and put your own code like i added then you can simply check it out.
resources/views/errors/404.blade.php
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" ></script>
<style type="text/css">
body{
margin-top: 150px;
background-color: #C4CCD9;
}
.error-main{
background-color: #fff;
box-shadow: 0px 10px 10px -10px #5D6572;
}
.error-main h1{
font-weight: bold;
color: #444444;
font-size: 100px;
text-shadow: 2px 4px 5px #6E6E6E;
}
.error-main h6{
color: #42494F;
}
.error-main p{
color: #9897A0;
font-size: 14px;
}
</style>
</head>
<body>
<div >
<div >
<div >
<div >
<div >
<h1 >404</h1>
<h6>Page not found - ItSolutionStuff.com</h6>
<p>Lorem ipsum dolor sit <span >amet</span>, consectetur <span >adipisicing</span> elit, sed do eiusmod.</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
Now you can simply check it out.
I hope it can help you….
Hope this code and post will helped you for implement How to create custom 404 error page in Laravel 5.7?. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs