@@ -766,7 +778,7 @@ This would generate the following HTML:
If you want to use a different toggle, being it a different Boostrap icon, or maybe a completely different icon
font/library, then you can do this by
-[overriding the `tooltip` template](https://book.cakephp.org/4/en/views/helpers/form.html#customizing-the-templates-formhelper-uses)
+[overriding the `tooltip` template](https://book.cakephp.org/5/en/views/helpers/form.html#customizing-the-templates-formhelper-uses)
accordingly, being it globally, per form, or per control:
```php
@@ -781,8 +793,8 @@ echo $this->Form->control('title', [
### Error feedback style
BootstrapUI supports two styles of error feedback, the
-[regular Bootstrap text feedback](https://getbootstrap.com/docs/4.5/components/forms/#validation), and
-[Bootstrap tooltip feedback](https://getbootstrap.com/docs/4.5/components/forms/#tooltips) (not to be confused with
+[regular Bootstrap text feedback](https://getbootstrap.com/docs/5.3/components/forms/#validation), and
+[Bootstrap tooltip feedback](https://getbootstrap.com/docs/5.3/components/forms/#tooltips) (not to be confused with
label tooltips that are configured via the `tooltip` option!).
The style can be configured via the `feedbackStyle` option, either globally, per form, or per control. The supported
@@ -794,7 +806,7 @@ styles are:
(inline forms are using this style by default).
Note that using the tooltip error style requires the form group elements to be non-static positioned! The form helper
-will automatically add Bootstraps [position utility class](https://getbootstrap.com/docs/4.5/utilities/position/)
+will automatically add Bootstraps [position utility class](https://getbootstrap.com/docs/5.3/utilities/position/)
`position-relative` to the form group elements when the tooltip error style is enabled.
If you need different positioning, use either CSS to override the `position` rule on the `.form-group` elements, or use
@@ -821,7 +833,7 @@ echo $this->Form->control('title');
With an error on the `title` field, this would generate the following HTML:
```html
-