2023-06-01 10:15:33 +00:00
|
|
|
<x-layout-simple>
|
2026-06-20 00:23:12 +00:00
|
|
|
<x-auth.shell title="MapleDeploy" description="Confirm your password to continue to this secure area.">
|
2026-08-03 21:11:54 +00:00
|
|
|
<div class="flex flex-col gap-4">
|
|
|
|
|
@if (session('status'))
|
|
|
|
|
<x-auth.alert type="success">{{ session('status') }}</x-auth.alert>
|
|
|
|
|
@endif
|
2025-10-16 15:01:32 +00:00
|
|
|
|
2026-08-03 21:11:54 +00:00
|
|
|
@if ($errors->any())
|
|
|
|
|
<x-auth.alert type="error">
|
|
|
|
|
<div class="flex flex-col gap-1">
|
|
|
|
|
@foreach ($errors->all() as $error)
|
|
|
|
|
<p>{{ $error }}</p>
|
|
|
|
|
@endforeach
|
2023-06-01 10:15:33 +00:00
|
|
|
</div>
|
2026-08-03 21:11:54 +00:00
|
|
|
</x-auth.alert>
|
|
|
|
|
@endif
|
2025-10-16 15:01:32 +00:00
|
|
|
|
2026-08-03 21:11:54 +00:00
|
|
|
<div class="auth-guidance">
|
|
|
|
|
<x-reicon name="info-circle" class="mt-0.5 size-4 shrink-0" />
|
|
|
|
|
<p>This is a secure area. Please confirm your password before continuing.</p>
|
2023-06-01 10:15:33 +00:00
|
|
|
</div>
|
2026-08-03 21:11:54 +00:00
|
|
|
|
|
|
|
|
<form action="/user/confirm-password" method="POST" class="flex flex-col gap-4">
|
|
|
|
|
@csrf
|
|
|
|
|
<x-forms.input required type="password" name="password" autocomplete="current-password" autofocus
|
|
|
|
|
label="{{ __('input.password') }}" />
|
|
|
|
|
<x-forms.button class="w-full justify-center" type="submit" isHighlighted>
|
|
|
|
|
{{ __('auth.confirm_password') }}
|
|
|
|
|
</x-forms.button>
|
|
|
|
|
</form>
|
2023-06-01 10:15:33 +00:00
|
|
|
</div>
|
2026-08-03 21:11:54 +00:00
|
|
|
</x-auth.shell>
|
2023-06-01 10:15:33 +00:00
|
|
|
</x-layout-simple>
|