events-venues/resources/views/errors/404.blade.php

20 lines
503 B
PHP

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Page Not Found</title>
<style>
body {
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
background: #fff url("{{ Vite::asset('resources/images/404.svg') }}") no-repeat center;
}
</style>
</head>
<body></body>
</html>