How to add two or more forms to one page? I do not know how to do that. I am getting some notice error.
$datepicker_form = new DatePickerForm();
$search_form = new BookingSearchForm();
$this->view->form = $datepicker_form;
$this->view->search = $search_form;
//and on view
{{ form('admin/index', 'method': 'post') }}
{{ search('admin/searchbookings', 'method': 'post') }}
If I can't add two or more forms with form builder that would be kind of silly, don't you think ? Why then use form builder at all?