[Vuejs]-How to generate and validate a random (and temporary) password in Laravel?

0👍

You can use uniqid() to generate a random string like this 61595f7b648c0. then save it on a table drafts linked to users table to check on it again

Leave a comment