44 lines
2.1 KiB
PHP
44 lines
2.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="ar" dir="rtl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>@yield('title', 'دمشق باركينغ')</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css">
|
|
@vite(['resources/css/app.scss', 'resources/js/app.js'])
|
|
</head>
|
|
<body style="background:#f1f5f9;font-family:'Cairo',sans-serif;">
|
|
|
|
{{-- ══ HEADER ══════════════════════════════════════════════════════════════ --}}
|
|
@include('partials.topbar')
|
|
|
|
{{-- ══ CONTENT ═════════════════════════════════════════════════════════════ --}}
|
|
<main style="padding:1.5rem;">
|
|
|
|
{{-- Flash messages --}}
|
|
@if(session('success'))
|
|
<div class="alert alert-success d-flex align-items-center gap-2 border-0 rounded-3 py-2 mb-4">
|
|
<i class="bi bi-check-circle-fill flex-shrink-0"></i>
|
|
<span>{{ session('success') }}</span>
|
|
<button type="button" class="btn-close ms-auto" data-bs-dismiss="alert"></button>
|
|
</div>
|
|
@endif
|
|
@if(session('error'))
|
|
<div class="alert alert-danger d-flex align-items-center gap-2 border-0 rounded-3 py-2 mb-4">
|
|
<i class="bi bi-exclamation-triangle-fill flex-shrink-0"></i>
|
|
<span>{{ session('error') }}</span>
|
|
<button type="button" class="btn-close ms-auto" data-bs-dismiss="alert"></button>
|
|
</div>
|
|
@endif
|
|
|
|
@yield('content')
|
|
</main>
|
|
|
|
@stack('scripts')
|
|
</body>
|
|
</html>
|