No longer able to manage blocked domains.

This commit is contained in:
James Cole
2016-12-28 18:57:15 +01:00
parent 9ef24c0a43
commit 04b284f030
7 changed files with 1 additions and 352 deletions

View File

@@ -72,9 +72,7 @@ class RegisterController extends Controller
$this->throwValidationException($request, $validator);
}
$data = $request->all();
$data['password'] = bcrypt($data['password']);
$user = $this->create($request->all());
$user = $this->create($request->all());
// trigger user registration event:
event(new RegisteredUser($user, $request->ip()));