The admin panel create and edit views should integrate the validation logic from the entity manifest.
Key points are the following:
[ ] Display a red * on required/isNotEmpty fields and prevent submiting
[x] Display errors messages on 400 errors
I considered also having live validation for custom validators but it is a huge work as we have 12 types x 30+ validators. It is not worth it right now
We could also add specific attributes to inputs based on validators. Examples: Numbers fields with min/max validators can have a "min" and "max" html attribute to the input.
The admin panel create and edit views should integrate the validation logic from the entity manifest.
Key points are the following:
I considered also having live validation for custom validators but it is a huge work as we have 12 types x 30+ validators. It is not worth it right now