Hi all, I using phalcon 3.x.
<?php
$form = new LandPostForm();
$this->view->form = $form;
Code in LandPostForm();
$post_title = new Text('post_title', [
'class' => 'form-control',
'placeholder' => 'Tiêu đề'
]);
$post_title->setLabel('Tiêu đề:');
$this->add($post_title);
How to get value post_title when submited in view file volt template