You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description:
First off, great package—thanks for making it! We’re encountering an issue when trying to use the toggle functionality as an admin. When we click the “show” button on a form or detail view, it reveals the encrypted password value rather than the actual password.
Expected Behavior:
Clicking the toggle button should display the real password to authorized users instead of the encrypted hash.
Question:
Is there a recommended way to configure this so that the toggle reveals the real password? Any guidance would be appreciated.
Thank you in advance for your help!
The text was updated successfully, but these errors were encountered:
@aliwesome there is two use cases I can think of right now:
if the password used to authenticate users into Laravel app, then it has to be Hashed for Laravel to validated on login, you can only reveal the password while you enter it for the first time or reset.
the password field could be used for other values we want to remain hidden, like API secret keys, in this case we manually disable the Hashing for this field using VisiblePassword::make('API Secret')->hashOnSave(false).
Description:
First off, great package—thanks for making it! We’re encountering an issue when trying to use the toggle functionality as an admin. When we click the “show” button on a form or detail view, it reveals the encrypted password value rather than the actual password.
Expected Behavior:
Clicking the toggle button should display the real password to authorized users instead of the encrypted hash.
Question:
Is there a recommended way to configure this so that the toggle reveals the real password? Any guidance would be appreciated.
Thank you in advance for your help!
The text was updated successfully, but these errors were encountered: