22 lines
894 B
PHP
22 lines
894 B
PHP
<!DOCTYPE html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
@include('partials.head', ['title' => $title ?? __('Verify a certificate')])
|
|
</head>
|
|
<body class="min-h-screen bg-zinc-50 antialiased selection:bg-emerald-200 selection:text-emerald-950 dark:bg-zinc-950 dark:selection:bg-emerald-900 dark:selection:text-emerald-100">
|
|
<div class="mx-auto flex min-h-screen w-full max-w-2xl flex-col gap-8 px-4 py-10 sm:py-16">
|
|
<div class="flex justify-center">
|
|
<x-app-logo href="{{ route('home') }}" />
|
|
</div>
|
|
|
|
@yield('content')
|
|
|
|
<flux:text class="text-center text-xs">
|
|
{{ __('Certificate authenticity check powered by :app.', ['app' => config('app.name')]) }}
|
|
</flux:text>
|
|
</div>
|
|
|
|
@fluxScripts
|
|
@stack('scripts')
|
|
</body>
|
|
</html>
|