{{-- Validation Errors / Status --}}
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
{{--
Reset Password Form
Alpine state:
- submitting: prevents double-submit, shows spinner
- newPassword: bound to New Password field for real-time scoring
- confirmPassword: bound to Confirm Password field for match checking
- strength: 0–4 score computed from newPassword
- passwordsMatch: null until user starts typing confirm (then true/false)
--}}