You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
673 B
13 lines
673 B
<div>
|
|
<div class="small text-muted mb-4 text-center">
|
|
{{ __('domains/auth/pages.confirm_password.subheader') }}
|
|
</div>
|
|
|
|
<form wire:submit="confirmPassword" class="needs-validation mt-3 d-flex flex-column gap-3" novalidate>
|
|
|
|
<x-form.input name="form.password" wire:model="form.password" :label="__('domains/auth/field.confirm_password.password')" type="password" :placeholder="__('domains/auth/field.confirm_password.password')"
|
|
required autocomplete="current-password" />
|
|
|
|
<x-button wire:loading theme="primary" class="w-100 mt-4" :label="__('domains/auth/field.confirm_password.submit')" type="submit" />
|
|
</form>
|
|
</div>
|
|
|