Ajout des pages d'erreurs

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-13 11:30:28 +01:00
parent fc264552ca
commit 6823605d6f
3 changed files with 46 additions and 33 deletions

View File

@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Erreur</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap" rel="stylesheet">
<!-- Styles -->
<link rel="stylesheet" href="{{ asset('css/style.css') }}">
</head>
<body>
<header>
@include('header')
</header>
<h1>Une erreur est arrivée !</h1>
<h3>{{ $exception->getMessage() }}</h3>
</body>
</html>