Hi there,
I want to simplify the password reset process for the user by determining the users email address automatically from the given token. However, since Laravel stores a crypted version of the users token in the passwords_resets
table I cannot simply look up the users email-address by searching for the given token.
I tried to hash the given token by using Hash::make()
on it, but the resulting hash differs from the one in the database.
Can you give me a hint on how to hash the given token to get a resulting hash that matches the one in the database?
Thanks, Moritz
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community