Here we are giving you solution to fix “Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException” error in Laravel.
Please try following things which will fix the error.

Use Route::post() instead of Route::get(). It will work.
Route::post() to allow the form to POST the data to the URL.

For Example, Change the routing from get to post as below.

Route::get(‘store’, ‘UserController@store’);
                       to
Route::post(‘store’, ‘UserController@store’);