diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php index 7ca3d8a..d2bed51 100644 --- a/app/Http/Controllers/Auth/RegisterController.php +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -36,7 +36,8 @@ class RegisterController extends Controller */ public function __construct() { - $this->middleware('guest'); + $this->middleware('auth'); // disable registration + #$this->middleware('guest'); // allow registration } /**