Mercurial > borealpoint
comparison resources/views/layouts/guest.blade.php @ 0:9d7dcd54c677
Initial Commit and package setup
| author | luka |
|---|---|
| date | Sat, 23 Aug 2025 22:20:51 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:9d7dcd54c677 |
|---|---|
| 1 <!DOCTYPE html> | |
| 2 <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> | |
| 3 <head> | |
| 4 <meta charset="utf-8"> | |
| 5 <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| 6 <meta name="csrf-token" content="{{ csrf_token() }}"> | |
| 7 | |
| 8 <title>{{ config('app.name', 'Laravel') }}</title> | |
| 9 | |
| 10 <!-- Scripts --> | |
| 11 @vite(['resources/sass/app.scss', 'resources/js/app.js']) | |
| 12 </head> | |
| 13 <body class="bg-light text-dark"> | |
| 14 <div class="d-flex flex-column min-vh-100 justify-content-center align-items-center pt-3 pt-sm-0 bg-light"> | |
| 15 <div> | |
| 16 <a href="/"> | |
| 17 <x-application-logo class="w-20 h-20 text-secondary" /> | |
| 18 </a> | |
| 19 </div> | |
| 20 | |
| 21 <div class="w-100 mt-4 p-4 bg-white shadow-sm overflow-hidden rounded" style="max-width: 32rem;"> | |
| 22 {{ $slot }} | |
| 23 </div> | |
| 24 </div> | |
| 25 </body> | |
| 26 </html> |
