php - Moving folder to different folder gives error page not found in xampp
one text
Solution:
In showForm.blade.php you are submitting your form to a route called upload. However, in your routes file you have named the route as uploads
Just change name("uploads")
to name("upload")
in your routes file and see if it is working