32 lines
1.2 KiB
PHP
32 lines
1.2 KiB
PHP
@extends('layouts.nova')
|
|
|
|
@section('content')
|
|
<div class="px-4 py-8 md:px-6 md:py-10">
|
|
<div class="mx-auto w-full max-w-xl rounded-2xl border border-sb-line bg-panel-dark shadow-sb p-6 md:p-8">
|
|
<h1 class="text-2xl font-semibold text-white">Confirm Password</h1>
|
|
<p class="mt-2 text-sm text-sb-muted">Please confirm your password before continuing.</p>
|
|
|
|
<form method="POST" action="{{ route('password.confirm') }}" class="mt-4">
|
|
@csrf
|
|
|
|
<div>
|
|
<x-input-label for="password" :value="__('Password')" class="text-sb-muted" />
|
|
|
|
<x-text-input id="password" class="block mt-1 w-full bg-black/20 border-sb-line text-white"
|
|
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>
|
|
</div>
|
|
</div>
|
|
@endsection
|