Modern minimalist split-layout login (left brand panel, right form) at /login. Sign-in posts to /api/v1/auth/login, stores the bearer token in localStorage, redirects to /dashboard. Demo-account expander auto-fills the form. Placeholder dashboard fetches /me, shows top nav + stat cards (values pending), and supports sign-out. AdminUserSeeder now seeds 4 demo admins (admin/ops/audit/demo @verde.local, all "password"). Tailwind config gets a Verde green palette + Inter font; component classes for buttons + form inputs. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
19 lines
630 B
PHP
19 lines
630 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>{{ $title ?? 'Verde — Garbage Monitoring' }}</title>
|
|
|
|
<link rel="preconnect" href="https://fonts.bunny.net">
|
|
<link href="https://fonts.bunny.net/css?family=inter:400,500,600,700&display=swap" rel="stylesheet" />
|
|
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
</head>
|
|
<body class="font-sans">
|
|
{{ $slot ?? '' }}
|
|
@yield('content')
|
|
</body>
|
|
</html>
|