22 lines
		
	
	
		
			723 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			723 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>{{ config('app.name', 'Kithkin') }}</title>
 | 
						|
        @vite(['resources/css/app.css', 'resources/js/app.js'])
 | 
						|
    </head>
 | 
						|
    <body id="auth">
 | 
						|
        <header>
 | 
						|
            <a href="/">
 | 
						|
               <x-application-logo class="logo" />
 | 
						|
               <h1>{{ config('app.name', 'Kithkin') }}</h1>
 | 
						|
            </a>
 | 
						|
        </header>
 | 
						|
        <main class="border-md border-primary shadow-drop">
 | 
						|
            {{ $slot }}
 | 
						|
        </main>
 | 
						|
    </body>
 | 
						|
</html>
 |