I have a problem when I try to create a crud in symfony2. I can't show the datetime choice. I always get this problem.
Catchable Fatal Error: Argument 1 passed to Symfony\Component\Form\Extension\Core\ChoiceList\MonthChoiceList::__construct() must be an instance of IntlDateFormatter, null given, called in
Any idea?
FormType code:
public function buildForm(FormBuilder $builder, array $options)
{
$builder
->add('nome')
->add('email')
->add('senha')
->add('is_super')
->add('is_active')
->add('created') ;
}