71 lines
2.7 KiB
PHP
71 lines
2.7 KiB
PHP
<!DOCTYPE html>
|
|
|
|
<html lang="en" class="light-style">
|
|
<head>
|
|
<title>@yield('title')</title>
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="IE=edge,chrome=1">
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
|
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
|
|
<link rel="stylesheet" href="{{ asset('/fonts/roboto-pacifico.css?v=1') }}">
|
|
|
|
<!-- Icons. Uncomment required icon fonts -->
|
|
<link rel="stylesheet" href="{{ asset('/vendor/fonts/fontawesome.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('/vendor/fonts/ionicons.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('/vendor/fonts/linearicons.css') }}">
|
|
|
|
<link rel="stylesheet" href="{{ asset('/vendor/css/bootstrap.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('/vendor/css/appwork.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('/vendor/css/theme-corporate.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('/vendor/css/colors.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('/vendor/css/uikit.css') }}">
|
|
<link rel="stylesheet" href="{{ asset('/vendor/css/mycolors.css') }}">
|
|
|
|
<script src="{{ asset('/vendor/js/material-ripple.js') }}"></script>
|
|
|
|
<script src="{{ asset('/vendor/js/layout-helpers.js') }}"></script>
|
|
|
|
|
|
<!-- Core scripts -->
|
|
<script src="{{ asset('/js/jquery.min.js') }}"></script>
|
|
|
|
<!-- Page -->
|
|
<link rel="stylesheet" href="{{ asset('/vendor/css/error.css') }}">
|
|
|
|
</head>
|
|
|
|
<body class="bg-primary">
|
|
|
|
<div class="overflow-hidden">
|
|
<div class="container d-flex align-items-stretch ui-mh-100vh p-0">
|
|
<div class="row w-100">
|
|
<div class="d-flex col-md justify-content-center align-items-center order-2 order-md-1 position-relative p-5">
|
|
<div class="error-bg-skew theme-bg-white"></div>
|
|
|
|
<div class="text-md-left text-center">
|
|
<h1 class="display-2 font-weight-bolder mb-4 text-dark">Whoops...</h1>
|
|
<div class="text-xlarge font-weight-light mb-5">@yield('message')</div>
|
|
<a href="{{ url()->previous() }}" type="button" class="btn btn-secondary">← Go Back</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="d-flex col-md-5 justify-content-center align-items-center order-1 order-md-2 text-center text-white p-5">
|
|
<div>
|
|
<div class="error-code font-weight-bolder mb-2">@yield('code', __('Oh no'))</div>
|
|
<div class="error-description font-weight-light">@yield('title')</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Core scripts -->
|
|
<script src="{{ asset('/vendor/libs/popper/popper.js') }}"></script>
|
|
<script src="{{ asset('/vendor/js/bootstrap.js') }}"></script>
|
|
</body>
|
|
</html>
|
|
|