IN CakePHP 3.6 How do I make a line jump between the label and the input type?
<?= $this->Form->control('nombre', ['placeholder' => 'Nombre', 'class' => 'nombre', 'size' => '20', 'maxlength' => '30']); ?>
It shows me the label and the input in a single line, but I want to show it in separate lines.