Form fieldset

By grouping form elements together with the fieldset element, you can improve the organization and accessibility of your forms, making it easier for users to understand the purpose of each input and provide accurate information.

Default markup

Group parts of your form to make it well-structured and clearer for users, using the fieldset element.

<fieldset class="form-fieldset">
  ...
  <div class="mb-3">
    <label class="form-label required">Company</label>
    <input type="text" class="form-control" autocomplete="off"/>
  </div>
  ...
</fieldset>