Here is what my form field,
$this->addElement( 'text', 'title', array(
'placeholder' => 'Title',
'class' => 'form-control',
'required' => true,
'filters' => array( 'StringTrim' ),
'autocomplete' => 'off',
) );
I Simply need the error string like: Title is required and can't be empty.