Can you show (i) your routes file routes/web.php and (ii) the signup form HTML?
Please format your code correctly by wrapping it within triple backticks
```
// your code
```
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hello Guys, I'm trying to run up a Sign up form but I got these error: Symfony \ Component \ HttpKernel \ Exception \ MethodNotAllowedHttpException PHP 8.2.0 10.24.0 The POST method is not supported for route signup. Supported methods: GET, HEAD.
Expand vendor frames 26 vendor frames C:\xampp\htdocs\Social-Network\public\index .php : 51 require_once 1 vendor frame C:\xampp\htdocs\Social-Network\public\index .php : 51
|
| Composer provides a convenient, automatically generated class loader for
| this application. We just need to utilize it! We'll simply require it
| into the script here so we don't need to manually load our classes.
|
*/
require DIR.'/../vendor/autoload.php';
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/
$app = require_once DIR.'/../bootstrap/app.php';
$kernel = $app->make(Kernel::class);
$response = $kernel->handle(
$request = Request::capture()
)->send();
$kernel->terminate($request, $response);
If you need any file, I'll be willing to provide. Thanks!
Please or to participate in this conversation.