You have a post route, however your browser can only handle get routes if you type in an url in the browser. There is no route to match for get so it tries the post route. However the method is incorrect so Laravel throws you this exception!
You can either create the get route and let that redirect or handle the exception in the app/Exceptions/Handler.php file and do something with that.