91 lines
2.8 KiB
PHP
91 lines
2.8 KiB
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>@yield('title', 'Админка')</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f5f7fa;
|
|
color: #333;
|
|
}
|
|
.wrapper {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
header {
|
|
background-color: #4a148c;
|
|
color: white;
|
|
padding: 15px 20px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 25px;
|
|
border-radius: 6px;
|
|
}
|
|
nav a {
|
|
color: white;
|
|
text-decoration: none;
|
|
margin-left: 20px;
|
|
padding: 6px 12px;
|
|
border-radius: 4px;
|
|
transition: background-color 0.2s;
|
|
}
|
|
nav a:hover {
|
|
background-color: #6a1b9a;
|
|
}
|
|
main {
|
|
background: white;
|
|
padding: 25px;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
|
|
}
|
|
.btn {
|
|
display: inline-block;
|
|
background-color: #4a148c;
|
|
color: white;
|
|
padding: 8px 16px;
|
|
text-decoration: none;
|
|
border-radius: 4px;
|
|
border: none;
|
|
cursor: pointer;
|
|
font-size: 0.95rem;
|
|
transition: background-color 0.2s;
|
|
}
|
|
.btn:hover { background-color: #6a1b9a; }
|
|
.btn-secondary { background-color: #7b1fa2; }
|
|
.btn-secondary:hover { background-color: #9c27b0; }
|
|
.btn-danger { background-color: #000000; }
|
|
.btn-danger:hover { background-color: #212121; }
|
|
table { width: 100%; border-collapse: collapse; margin: 20px 0; }
|
|
th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #eaeaea; }
|
|
th { background-color: #f1f1f1; font-weight: 600; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="wrapper">
|
|
<header>
|
|
<nav>
|
|
<a href="{{ route('admin.hotels.index') }}">Отели</a>
|
|
<form action="{{ route('admin.logout') }}" method="POST" style="display: inline;">
|
|
@csrf
|
|
<button type="submit" style="background: none; border: none; color: white; cursor: pointer;">Выйти</button>
|
|
</form>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
@if(session('success'))
|
|
<div style="padding:12px;background:#e0f0e0;color:#2d5d2d;border-left:4px solid #4caf50;margin:16px 0;border-radius:4px;">
|
|
{{ session('success') }}
|
|
</div>
|
|
@endif
|
|
|
|
@yield('content')
|
|
</main>
|
|
</div>
|
|
</body>
|
|
</html> |