Every time I create an input field using
$this->Form->input('name');
It creates a div element
<div class="input name">
<input type="text">
</div>
Is there a way to prevent creation of div block around input field. Also, is there a way to add custom class to the div
created? like
<div class="input name myStyle">
<input>
</div>
I'm using CakePHP 3.2