Initial Commit
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="da">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport"
|
||||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<title>{{ $title ?? 'login'}}</title>
|
||||
<link rel="icon" type="image/png" href="SKPFullLogo.png">
|
||||
<link rel="stylesheet" href={{ asset('css/app.css') }}>
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
padding-top: 90px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body class="">
|
||||
<div class="container-fluid">
|
||||
@if($errors->any())
|
||||
@foreach($errors->all() as $error)
|
||||
<div class="alert alert-danger" role="alert">
|
||||
"{{$error}}"
|
||||
</div>
|
||||
@endforeach
|
||||
@endif
|
||||
@yield('content')
|
||||
</div>
|
||||
@include('Partials.footer')
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user