Skip to content

Commit

Permalink
disable guest registration
Browse files Browse the repository at this point in the history
  • Loading branch information
GesangPJ committed Jun 11, 2024
1 parent 20736c1 commit d302e65
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions routes/auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
use App\Http\Controllers\Auth\EmailVerificationNotificationController;

Route::middleware('guest')->group(function () {
Route::get('register', [RegisteredUserController::class, 'create'])
->name('register');
//Route::get('register', [RegisteredUserController::class, 'create'])
// ->name('register');

Route::post('register', [RegisteredUserController::class, 'store']);
//Route::post('register', [RegisteredUserController::class, 'store']);

Route::get('login', [AuthenticatedSessionController::class, 'create'])
->name('login');
Expand Down

0 comments on commit d302e65

Please sign in to comment.