<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title>Page is not found</title>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans:300,300i,400,400i,600,600i,700,700i&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Muli:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap" rel="stylesheet">
<link href="{{ asset('assets/admin/side_menu/css/404-not-found.css') }}" rel="stylesheet">
</head>
<body class="boxed_wrapper">
<!-- error-section -->
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="error-template">
<h1>Oops!</h1>
<h2>404 Not Found</h2>
<div class="error-details">
Sorry, an error has occured, Requested page not found!
</div>
<a href="{{ url('/') }}" class="theme-btn style-one">Back to Home<span>+</span></a>
</div>
</div>
</div>
</div>
<!-- error-section end -->
</body>
</html>
|