Edit file File name : TagEditForm.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; use App\Entity\Tag; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; use Symfony\Component\Form\FormBuilderInterface; use Symfony\Component\OptionsResolver\OptionsResolver; class TagEditForm extends AbstractType { use ColorTrait; /** * {@inheritdoc} */ public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('name', TextType::class, [ 'label' => 'label.name', 'attr' => [ 'autofocus' => 'autofocus' ], 'documentation' => [ 'type' => 'string', 'description' => 'The tag name (forbidden character: comma)', ], ]) ; $this->addColor($builder); } /** * {@inheritdoc} */ public function configureOptions(OptionsResolver $resolver) { $resolver->setDefaults([ 'data_class' => Tag::class, 'csrf_protection' => true, 'csrf_field_name' => '_token', 'csrf_token_id' => 'tags_edit', 'attr' => [ 'data-form-event' => 'kimai.tagUpdate' ], ]); } } Save