mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 15:07:49 +00:00
26 lines
1.1 KiB
PHP
26 lines
1.1 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}" class="dark">
|
|
<head>
|
|
@include('partials.head')
|
|
</head>
|
|
<body class="min-h-screen bg-neutral-100 antialiased dark:bg-linear-to-b dark:from-neutral-950 dark:to-neutral-900">
|
|
<div class="bg-muted flex min-h-svh flex-col items-center justify-center gap-6 p-6 md:p-10">
|
|
<div class="flex w-full max-w-md flex-col gap-6">
|
|
<a href="{{ route('home') }}" class="flex flex-col items-center gap-2 font-medium">
|
|
<span class="flex h-9 w-9 items-center justify-center rounded-md">
|
|
<x-app-logo-icon class="size-9 fill-current text-black dark:text-white" />
|
|
</span>
|
|
|
|
<span class="sr-only">{{ config('app.name', 'Laravel') }}</span>
|
|
</a>
|
|
|
|
<div class="flex flex-col gap-6">
|
|
<div class="styled-container">
|
|
<div class="px-10 py-8">{{ $slot }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@fluxScripts
|
|
</body>
|
|
</html>
|