- Replaced deprecated `flux` components with `maryUI` counterparts (`flux:input` → `x-mary-input`, `flux:button` → `x-mary-button`, etc.). - Removed unused partials (`settings-heading.blade.php`) and outdated structures from Blade files. - Adjusted Livewire modal, form, and button implementations for consistency with `maryUI`. - Streamlined layout and theme styling for improved maintainability and readability.
29 lines
1001 B
PHP
29 lines
1001 B
PHP
<x-layouts::auth :title="__('Confirm password')">
|
|
<div class="flex flex-col gap-6">
|
|
<x-auth-header
|
|
:title="__('Confirm password')"
|
|
:description="__('This is a secure area of the application. Please confirm your password before continuing.')"
|
|
/>
|
|
|
|
<x-auth-session-status class="text-center" :status="session('status')"/>
|
|
|
|
<form method="POST" action="{{ route('password.confirm.store') }}" class="flex flex-col gap-6">
|
|
@csrf
|
|
|
|
<x-mary-input
|
|
name="password"
|
|
:label="__('Password')"
|
|
type="password"
|
|
required
|
|
autocomplete="current-password"
|
|
:placeholder="__('Password')"
|
|
viewable
|
|
/>
|
|
|
|
<x-mary-button type="submit" class="w-full btn-primary" data-test="confirm-password-button">
|
|
{{ __('Confirm') }}
|
|
</x-mary-button>
|
|
</form>
|
|
</div>
|
|
</x-layouts::auth>
|