36 lines
1.2 KiB
PHP
36 lines
1.2 KiB
PHP
<x-layout title="{{ __('Welcome home') }}">
|
|
<x-slot:breadcrumb>
|
|
{{ Breadcrumbs::render('home') }}
|
|
</x-slot:breadcrumb>
|
|
<x-slot name="header">
|
|
<h1 class="text-lg text-center font-bold">{{ __('Welcome home') }}</h1>
|
|
{{ __('GG man! You just found my website.') }}<br>
|
|
{{ __('You can leave again tho. Nothing to see here.') }}
|
|
</x-slot>
|
|
<div class="mb-4 text-sm text-gray-600">
|
|
{{ __('This is a secure area of the application. Please confirm your password before continuing.') }}
|
|
</div>
|
|
|
|
<form method="POST" action="{{ route('password.confirm') }}">
|
|
@csrf
|
|
|
|
<!-- Password -->
|
|
<div>
|
|
<x-input-label for="password" :value="__('Password')" />
|
|
|
|
<x-text-input id="password" class="block mt-1 w-full"
|
|
type="password"
|
|
name="password"
|
|
required autocomplete="current-password" />
|
|
|
|
<x-input-error :messages="$errors->get('password')" class="mt-2" />
|
|
</div>
|
|
|
|
<div class="flex justify-end mt-4">
|
|
<x-primary-button>
|
|
{{ __('Confirm') }}
|
|
</x-primary-button>
|
|
</div>
|
|
</form>
|
|
</x-layout>
|