- Updated login and registration forms with improved layout and new components for better user experience. - Removed unused favicon and replaced references with updated logo image.
18 lines
487 B
PHP
18 lines
487 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="dark">
|
|
<head>
|
|
@include('partials.head')
|
|
</head>
|
|
<body class="min-h-screen bg-gray-10 antialiased">
|
|
<div
|
|
class="flex min-h-svh flex-col items-center justify-center gap-6 p-6 md:p-10 bg-cover bg-center"
|
|
style="background-image: url('{{ asset('images/4238287.jpg') }}');">
|
|
{{ $slot }}
|
|
@persist('mary-toaster')
|
|
<x-mary-toast/>
|
|
@endpersist
|
|
</div>
|
|
@livewireScripts
|
|
</body>
|
|
</html>
|