Replies: 1 comment
-
Moving this to |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have an application where I need to support re-authentication for one action. I am trying to implementing this by using the Jetstream Confirm Password functionality like this:
Blade file:
Livewire component:
This will open a window which performs a re-authentication on the user.
This re-authentication fails however.
I have been able to get one step further by adding the following callback function in AuthServiceProvider:
This re-authentication still fails however on the validation with the following error message:
What am I doing wrong?
I notice that
confirmPasswordUsing()
is missing inLdapUserAuthentication
and have tried to add it like this:This did not help though and I am not sure it is necessary since my new call back function do get called without this.
Anything else I need to do?
Beta Was this translation helpful? Give feedback.
All reactions