We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a12766 commit ca7db9eCopy full SHA for ca7db9e
1 file changed
routes/web.php
@@ -49,7 +49,7 @@
49
Route::group(array('prefix' => 'verification'), function () {
50
Route::post('resend', ['middleware' => ['csrf'], 'uses' => 'UserController@resendVerificationEmail']);
51
});
52
- Route::post('', ['middleware' => 'csrf', 'uses' => 'UserController@postLogin']);
+ Route::post('', ['middleware' => 'csrf', 'uses' => 'UserController@postLogin'])->block();
53
Route::get('cancel', "UserController@cancelLogin");
54
Route::group(array('prefix' => '{provider}'), function () {
55
Route::get('', 'SocialLoginController@redirect')->name("social_login");
0 commit comments