# Using fusion forms in a backend module Forms for backend modules basically work the same as in the frontend but the additional prototype `Neos.Fusion.Form:Neos.BackendModule.FieldContainer` can be used to render fields with translated labels and error messages using the default markup of the Neos backend. HINT: To render a backend module with fusion you have to set the `defaultViewObjectName` to the `Neos\Fusion\View\FusionView::class` in the controller class and be aware that you have to include all required fusion explicitly. ``` # # In backend modules all includes have to be done explicitly # the default fusion from Neos.Fusion and Neos.Fusion.Form # is needed for rendering of basic forms # include: resource://Neos.Fusion/Private/Fusion/Root.fusion include: resource://Neos.Fusion.Form/Private/Fusion/Root.fusion # # By default the fusion view creates the render paths from the # current package controller and action. # Form.Test.FusionController.index = Form.Test:Backend.UserForm Form.Test.FusionController.updateUser = Form.Test:Backend.UserForm # # The rendering of the form is centralized in a single prototype # that expects the values `title`, `user` and `targetAction` in the context # prototype(Form.Test:Backend.UserForm) < prototype(Neos.Fusion:Component) { renderer = afx`

{title}

Englisch Deutsch Russian Klingon submit ` } ```