Edit file File name : TeamMemberType.php Content :<?php /* * This file is part of the Kimai time-tracking app. * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace App\Form\Type; use App\Entity\TeamMember; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; class TeamMemberType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { $builder->add('user', UserType::class, [ 'selectpicker' => false, 'include_users' => $options['include_users'], ]); $builder->add('teamlead', YesNoType::class, [ 'label' => 'label.teamlead' ]); } public function getBlockPrefix() { return 'team_member'; } /** * {@inheritdoc} */ public function configureOptions(OptionsResolver $resolver) { $resolver->setDefaults([ 'data_class' => TeamMember::class, 'label' => 'label.user', 'compound' => true, 'include_users' => [], ]); } } Save