Try creating a complete Blade file. I think you got this error because you're only sending the form, without the rest of the HTML structure like <!DOCTYPE html>, <html>, <head>, and <body>.
Also, make sure you're including the @csrf directive if it's a POST request.
You can open your browser's Network tab (usually under DevTools) to inspect the request and response details — that often gives helpful clues when debugging issues like this.