When building forms, there are times when we want to display helpful information regarding the field. There are a couple of ways to do this: by using LiteralField or using setDescription() in the field object. Silverstripe provides setDescription() function in a field object to help generating text underneath a field. This field can be chained with other function. So you can set the description on creation like below: [crayon-679b1f7c4f601893558684/] Or when you adding a field to a tab: [crayon-679b1f7c4f610945149730/] …