Router:
Route::post('/submit/{id}', function() {
return 'Hello World';
});
HTML:
<form method="POST" action="/submit/{{$id}}">
The above changes the URL to http://127.0.0.1:8000/submit/$id
and returns
Page has Expired Due to Inactivity.
It looks like Laravel is trying to force the POST into a GET.