progetto di test della creazione di un progetto basato sul framework laravel e aggiunta form login e register utilizzando breeze
filippo.bertilotti
2024-04-12 f7d0ce435d960868043e25ce3a7c647c890bb132
commit | author | age
f7d0ce 1 <!DOCTYPE html>
F 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         <!-- Fonts -->
11         <link rel="preconnect" href="https://fonts.bunny.net">
12         <link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
13
14         <!-- Scripts -->
15         @vite(['resources/css/app.css', 'resources/js/app.js'])
16     </head>
17     <body class="font-sans antialiased">
18         <div class="min-h-screen bg-gray-100">
19             <livewire:layout.navigation />
20
21             <!-- Page Heading -->
22             @if (isset($header))
23                 <header class="bg-white shadow">
24                     <div class="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8">
25                         {{ $header }}
26                     </div>
27                 </header>
28             @endif
29
30             <!-- Page Content -->
31             <main>
32                 {{ $slot }}
33             </main>
34         </div>
35     </body>
36 </html>