We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 739f8a6 commit 99847adCopy full SHA for 99847ad
routes/web.php
@@ -139,7 +139,7 @@
139
Route::post('login', [CustomerAuthController::class, 'login']);
140
141
Route::get('register', [CustomerAuthController::class, 'showRegister'])->name('customer.register');
142
- Route::post('register', [CustomerAuthController::class, 'register']);
+ Route::post('register', [CustomerAuthController::class, 'register'])->middleware('throttle:5,1');
143
144
Route::get('forgot-password', [CustomerAuthController::class, 'showForgotPassword'])->name('password.request');
145
Route::post('forgot-password', [CustomerAuthController::class, 'sendPasswordResetLink'])->name('password.email');
0 commit comments