18 lines
518 B
PHP
18 lines
518 B
PHP
<!DOCTYPE html>
|
|
<html lang="it" class="h-full bg-gray-50">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
<title>{{ $title ?? 'TerManager2' }}</title>
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
@livewireStyles
|
|
</head>
|
|
<body class="h-full flex items-center justify-center">
|
|
<div class="w-full max-w-md">
|
|
{{ $slot }}
|
|
</div>
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|