I'm trying to add a css class attribute to a field but i have a small problem :
echo $this->Form->input('dateLimite', ['type'=>'text', 'foo' => 'bar', 'class' => 'datepicker']);
Output :
<input class="form-control" type="text" name="dateLimite" foo="bar" required="required" id="datelimite">
The class attribut cannot be displayed. Have you an idea please ?