I have a Zf2 form date element and i use it this way,
$this->add(array(
'type' => 'Zend\Form\Element\Date',
'name' => 'releasedate',
'options' => array(
'label' => 'Release Date'
),
'attributes' => array(
'min' => '2012-01-01',
'max' => '2020-01-01',
'step' => '1',
)
));
So in chrome i get a date picker but not in safari or firefox ? i need to do any new configurations for that ?