### Pimcore version 11.5 ### Steps to reproduce Create a template with a `renderlet` editable and pass some custom parameters [as stated in the docs](https://docs.pimcore.com/platform/2024.4/Pimcore/Documents/Editables/Renderlet#:~:text=optionally%20you%20can%20pass%20every%20parameter%20(with%20a%20scalar%20data%20type)%20you%20like%20to%20the%20renderlet). ### Actual Behavior When you try to fetch them in the controller from the request query bag [as stated in the docs](https://docs.pimcore.com/platform/2024.4/Pimcore/Documents/Editables/Renderlet#:~:text=which%20can%20be%20accessed%20in%20the%20configured%20controller%20with%20%24request-%3Equery-%3Eget('yourkey')), the bag is empty. Instead of being in the `query` bag, they are in the `attributes` bag and must be accessed via `$request->attributes->get('yourKey')` ### Expected Behavior Being able to fetch them from the `query` bag like `$request->query->get('yourKey')`.