(Fix) User Groups

- hotfix
This commit is contained in:
HDVinnie
2018-10-19 17:14:09 -04:00
parent dad8b5940d
commit 5826086a67
5 changed files with 12 additions and 12 deletions
@@ -22,7 +22,7 @@ class ResetPasswordController extends Controller
protected function resetPassword($user, $password)
{
$validatingGroup = Group::where('slug', '=', 'validating')->select('id')->first();
$memberGroup = Group::where('slug', '=', 'member')->select('id')->first();
$memberGroup = Group::where('slug', '=', 'user')->select('id')->first();
$user->password = bcrypt($password);
$user->remember_token = Str::random(60);