If you created forms with version 1.* of Easy Forms and want to update them to version 2.*, you must make the following changes:
- On each form title, remove the CSS Class: “legend”
- On each field replace the Label CSS Class: “control-label” with “form-label”
- On each field replace the Container CSS Class: “col-xs-12” with “col-12) or “col-xs-6” with “col-6”
- On each radio button and checkbox field, replace the CSS Class “radio-inline” or “checkbox-inline” with “form-check”
- On each select list field, replace the CSS Class “form-control” with “form-select”
Basically what we are doing is replacing the CSS classes that were used with Bootstrap 3 with the CSS classes that are used with Bootstrap 5.
That’s it!