Function from the controller never called in Laravel 11
I have a form to edit my users, <form action="{{ route('user.update', ['id' => $user->id]) }}" method="post"> @csrf @method('PUT') --content-- </form> A file web.php with all the routes where I have the get method to receive the user's informations //CRUD Edit…