diff --git a/src/content/docs/useform/register.mdx b/src/content/docs/useform/register.mdx index 8f18c11b2..ce920a9b6 100644 --- a/src/content/docs/useform/register.mdx +++ b/src/content/docs/useform/register.mdx @@ -47,6 +47,12 @@ This is how submitted values will look like: By selecting the register option, the API table below will get updated. + + +These are validation rules, not native HTML attributes. They run based on the form's [`mode`](/docs/useform#mode) and don't block typing. To also forward `required`, `min`, `max`, `minLength`, `maxLength`, and `pattern` as native attributes on the input, set [`progressive`](/docs/useform/form) to `true` on `useForm`. + + +