diff --git a/routes/web.php b/routes/web.php index 720b2669..f6f4a128 100644 --- a/routes/web.php +++ b/routes/web.php @@ -46,7 +46,7 @@ Route::group(['prefix' => 'auth'], function () Route::group(['middleware' => 'auth', 'prefix' => 'user'], function () { Route::any ('', 'UserController@index'); - Route::any ('/sign', 'UserController@sign'); + Route::post('/sign', 'UserController@sign'); // Profile Route::get ('/profile', 'UserController@profile');