21 lines
812 B
PHP
21 lines
812 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="<?php echo e(csrf_token()); ?>">
|
|
<title><?php echo e($title ?? 'TerManager2'); ?></title>
|
|
<?php echo app('Illuminate\Foundation\Vite')(['resources/css/app.css', 'resources/js/app.js']); ?>
|
|
<?php echo \Livewire\Mechanisms\FrontendAssets\FrontendAssets::styles(); ?>
|
|
|
|
</head>
|
|
<body class="h-full flex items-center justify-center">
|
|
<div class="w-full max-w-md">
|
|
<?php echo e($slot); ?>
|
|
|
|
</div>
|
|
<?php echo \Livewire\Mechanisms\FrontendAssets\FrontendAssets::scripts(); ?>
|
|
|
|
</body>
|
|
</html>
|
|
<?php /**PATH /var/www/html/resources/views/components/layouts/guest.blade.php ENDPATH**/ ?>
|