-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When users login fields are encrypted, login fails #1
Comments
For laravel 5.x to 7.x, you can create postLogin function to override the logic. For laravel 8.x, you need to create custom login controller to override the logic. |
Hi Elgibor, I fully agree with Roarkmccolgan, I love your package too, just implemented it in Laravel 8.x. Please be so kind to share the code for the custom LoginController function to make this work. Many thanks in advance! |
@elgibor-solution please can you share a solution for this? |
@LaravelLover069 @constantinosergiou can create a custom rule to retrieve the user's data with their email and check the password with hash::check |
Was this issue ever solved? |
Or
Would work for encrypted emails. Also i left the original non encrypted login for legacy support for none encrypted emails |
Here you go
|
Hi
LOVE this package, thank you!
I have a problem where i would like to encrypt my registered users.
They are no longer able to login as the built in Laravel Authentication doesn't use
whereEncrypted
Please will let me know how to get around this?
Thanks!
The text was updated successfully, but these errors were encountered: