Replaces maryUI and daisyUI with nonameweb/livewire-material: the Vibrant indigo scheme, a system/light/dark theme under sealshare-theme, one top app bar with the account menu, the upload drop zone and link-ready moments, M3 fields, dialogs instead of wire:confirm, snackbars instead of flashed messages, a sortable admin table, and the starter-kit cleanup. Docker builds assets after Composer; CI drops the Flux step. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01V9NnLxnPp8vaaurb3Z1MFy
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<x-layouts::auth :title="__('Reset password')">
|
|
<x-auth-header :title="__('Reset password')" :description="__('Please enter your new password below')" />
|
|
|
|
<x-auth-session-status :status="session('status')" />
|
|
|
|
<form method="POST" action="{{ route('password.update') }}" class="flex flex-col gap-5">
|
|
@csrf
|
|
<input type="hidden" name="token" value="{{ request()->route('token') }}">
|
|
|
|
<x-input
|
|
name="email"
|
|
:value="old('email', request('email'))"
|
|
:label="__('Email')"
|
|
type="email"
|
|
required
|
|
autocomplete="email"
|
|
icon="mail"
|
|
/>
|
|
|
|
<x-password
|
|
name="password"
|
|
:label="__('Password')"
|
|
required
|
|
autocomplete="new-password"
|
|
/>
|
|
|
|
<x-password
|
|
name="password_confirmation"
|
|
:label="__('Confirm password')"
|
|
required
|
|
autocomplete="new-password"
|
|
/>
|
|
|
|
<x-button type="submit" :label="__('Reset password')" variant="filled" class="w-full" data-test="reset-password-button" />
|
|
</form>
|
|
</x-layouts::auth>
|