I am experiencing some issues when trying to generate a form using 'inputs'
<?php
echo $this->Form->create('Post');
echo $this->Form->inputs(array( 'legend' => 'Personal information', 'name', 'nickname', 'age', 'email'));
echo $this->Form->inputs(array( 'legend' => 'Employment information', 'company', 'started_work', 'description'));
?>
Output: Warning (2): array_keys() expects parameter 1 to be array, null given [CORE\Cake\View\Helper\FormHelper.php, line 848]
When i remove $this->Form->create('Post'); it generates succesfully, but it does not have the output...