How do I recover the password of the admin user? the one you create when installing filamentphp?
How do I recover the password of the admin user? the one you create when installing filamentphp?
4 Replies
You can't. Filament just uses the default Hash facade for hashing the password into the user table, so that's either a Bcrypt or Argon2 hash, which is very much a one way encryption.
recommendation
You'll have to reset the password.
Not really a Filament thing, it's a Laravel thing. If you are completely locked out, you'll need to reset it on the command line. Maybe use tinker ...
... then ...
Adjust accordingly.
thank you