diff --git a/app/Http/Controllers/Auth/RegisterController.php b/app/Http/Controllers/Auth/RegisterController.php index 364948043..146974df9 100644 --- a/app/Http/Controllers/Auth/RegisterController.php +++ b/app/Http/Controllers/Auth/RegisterController.php @@ -12,4 +12,12 @@ class RegisterController extends Controller { $this->middleware('guest'); } + + public function showRegistrationForm() { + abort(404,'Page not found'); + } + + public function register() { + abort(404,'Page not found'); + } }