Error in the route you've defined. Its get and should change to post
change this
Route::get('/login', ['as' => 'login', 'uses' => 'LoginController@getLogin']);
to this
Route::post('/login', ['as' => 'login', 'uses' => 'LoginController@getLogin']);
action="{{ route('login') }}" # form Submit action