I am using Kohana 3.2 on a project that I am working on. I am new to this framework. While searching for the documentation for validation I found this page :
http://kohanaframework.org/3.1/guide/kohana/security/validation
In that page they are using built in helper functions for generating the form. I followed that tutorial but I was surprised to see even after using the form helper functions I had to to loop through the errors array and display the errors one by one. This is very much unlike Yii which displays the error messages automatically next to the form fields and also applies basic javascript validation intelligently.
Hence my question what is the point of using the form helper functions in Kohana framework ? Or is there some other purpose I am missing out ?