guest.blade.php (1314B)
1 <!DOCTYPE html> 2 <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> 3 4 <head> 5 <meta charset="utf-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1"> 7 <meta name="csrf-token" content="{{ csrf_token() }}"> 8 <meta property="csp-nonce" content="{{ csp_nonce() }}"> 9 10 <title>{{ config('app.name', 'Home ERP') }}</title> 11 12 <!-- Scripts --> 13 @vite(['resources/css/app.css']) 14 </head> 15 16 <body class="font-sans text-gray-900 antialiased"> 17 <div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100 dark:bg-gray-900"> 18 <div> 19 <a href="/" wire:navigate> 20 <x-application-logo class="w-20 h-20 fill-current text-gray-500" /> 21 </a> 22 </div> 23 24 <main 25 class="w-full sm:max-w-md mt-6 px-6 py-4 bg-white dark:bg-gray-800 shadow-md overflow-hidden sm:rounded-lg"> 26 {{ $slot }} 27 </main> 28 29 <footer class="py-12 max-w-7xl mx-auto sm:px-6 lg:px-8"> 30 <div class="ml-4 text-center text-sm text-gray-700 dark:text-gray-400 sm:text-right sm:ml-0"> 31 Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}) 32 </div> 33 </footer> 34 </div> 35 @vite(['resources/js/app.js']) 36 </body> 37 38 </html>