Attendize/resources/views/Public/Errors/Generic.blade.php

28 lines
655 B
PHP

<html>
<head>
<title>
@lang("basic.whoops")
</title>
<style>
body {
background-color: #f9f9f9;
color: #333;
text-align: center;
text-shadow: 0 1px 0 #fff;
font-size: 1.8em;
}
.missing {
width: 450px;
margin: 0 auto;
margin-top: 50px;
padding: 40px;
}
</style>
</head>
<body>
<div class="missing">
<h2>@lang("basic.whoops")</h2>
{{$message}}
</div>
</body>
</html>