disable register

This commit is contained in:
Александр Бабкин
2022-06-23 14:59:42 +03:00
parent 61205560b7
commit 89a12fcc29
2 changed files with 5 additions and 5 deletions

View File

@@ -11,8 +11,8 @@ use App\Http\Controllers\Auth\VerifyEmailController;
use Illuminate\Support\Facades\Route;
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']);