{{!-- Edit the below template to align with your actual user model. --}} {{#user}} {{!-- Conditionally render the basicInput form fields by wrapping the partial call with a block expression referencing the property. This will prevent the field from being rendered in the form if the property does not exist in the user object. To always display the form field, simply remove the wrapping block expression. --}} {{#userName}} {{> form/_basicInput property="userName" label="common.user.username" readonly=true}} {{/userName}} {{#username}} {{> form/_basicInput property="username" label="common.user.username" readonly=true}} {{/username}} {{#givenName}} {{> form/_basicInput property="givenName" label="common.user.givenName"}} {{/givenName}} {{#sn}} {{> form/_basicInput property="sn" label="common.user.sn"}} {{/sn}} {{#mail}} {{> form/_basicInput type="email" property="mail" label="common.user.emailAddress"}} {{/mail}} {{#telephoneNumber}} {{> form/_basicInput type="tel" property="telephoneNumber" label="common.user.phoneNumber"}} {{/telephoneNumber}} {{#postalAddress}} {{> form/_basicInput property="postalAddress" label="common.user.address"}} {{/postalAddress}} {{/user}}