forked from projects/fipamo
43 lines
728 B
PHP
43 lines
728 B
PHP
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="theme-color" content="#d66365" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>
|
||
|
@yield('title')
|
||
|
</title>
|
||
|
<link rel="stylesheet" type="text/css" href="/assets/css/dash/start.css">
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<header>
|
||
|
THIS IS THE TOP
|
||
|
</header>
|
||
|
|
||
|
@if($errors->any())
|
||
|
<div class="system-notice-error" role="status">
|
||
|
{{$errors->first()}}
|
||
|
</div>
|
||
|
@endif
|
||
|
@if(session('message'))
|
||
|
<div class="system-notice-message" role="status">
|
||
|
{!! session('message') !!}
|
||
|
</div>
|
||
|
@endif
|
||
|
|
||
|
<main>
|
||
|
@section('main-content')
|
||
|
@show
|
||
|
</main>
|
||
|
<footer>
|
||
|
FOOTER
|
||
|
</footer>
|
||
|
</body>
|
||
|
</body>
|
||
|
|
||
|
</html>
|