This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.
chrisiek
I have a problem with creating a hashed password. Can somebody give me a clue how to do it?
Last updated
chrisiek
This worked for me:
$user = new User;
$user->password = Hash::make('mypassword');
$user->save();
alxy
The password should be hashed automatically. So it should be possible to set the password to the plain/actual value, and in the database it will still appear as hash.
1-3 of 3