An enhanced FormHelper
FormConfignovalidate this way globally throughout all formsAttach it to your controllers like so:
protected $helpers = ['Tools.Form'];
Alternatively, you can enable it in your AppView class.
// Inside your app.php config:
$config = [
'debug' => true,
...
'FormConfig' => array(
'novalidate' => true,
'templates' => array(
'dateWidget' => '{{day}}{{month}}{{year}}{{hour}}{{minute}}{{second}}{{meridian}}',
)
)
];