I am unable to pass url in views html form action tag.
For Laravel 2020. Ok, an example:
@csrf // !!! attention - this string is a must ....
And then in web.php:
Route::post("/login_kun", "LoginController@login");
And one more in new created LoginController:
public function login(Request $request){ dd($request->all()); }
and you are done my friend.