diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php index f77265a..13be4bf 100644 --- a/app/Http/Controllers/Auth/RegisterController.php +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -68,4 +68,13 @@ class RegisterController extends Controller 'password' => bcrypt($data['password']), ]); } + public function showRegistrationForm() + { + return redirect('login'); + } + + public function register() + { + abort(404); + } }