The POST method is not supported for this route. Supported methods: GET, HEAD. Laravel

I know this is not the solution to OPs post. However, this post is the first one indexed by Google when I searched for answers to this error. For this reason I feel this will benefit others.

The following error…

The POST method is not supported for this route. Supported
methods: GET, HEAD.

was caused by not clearing the routing cache

php artisan route:cache

Leave a Comment