Open
Description
Hello there,
First, thanks for releasing this Plugin.
Is is possible to group multiple input inside the same row ?
For exemple, if I want to show 2 input in the same row, I use the following code :
<div class="row">
<?= $this->Form->input('name', [
"label" => false,
"type" => "text",
'templates' => [
'inputContainer' => '<div class="col-lg-6">{{content}}</div>'
],
]);
?>
<?= $this->Form->input('surname', [
"label" => false,
"type" => "text",
'templates' => [
'inputContainer' => '<div class="col-lg-6">{{content}}</div>'
],]);
?>
</div>
Am i missing something or is the only way ?
Thanks in advance