diff options
Diffstat (limited to 'app/Http')
-rw-r--r-- | app/Http/Controllers/Auth/RegisterController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php index ed46cab..29ec08a 100644 --- a/app/Http/Controllers/Auth/RegisterController.php +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -67,7 +67,7 @@ class RegisterController extends Controller 'email' => $data['email'], ]); - $user->password = $data['password']; + $user->password = bcrypt($data['password']); $user->save(); |