diff --git a/src/Form/CaptchaPointForm.php b/src/Form/CaptchaPointForm.php
index 132bd8e..49f62e4 100755
--- a/src/Form/CaptchaPointForm.php
+++ b/src/Form/CaptchaPointForm.php
@@ -28,20 +28,13 @@ class CaptchaPointForm extends EntityForm {
       $captcha_point->set('label', $request->query->get('form_id'));
     }
 
-    $form['label'] = [
-      '#type' => 'textfield',
-      '#title' => $this->t('Form ID'),
-      '#default_value' => $captcha_point->label(),
-      '#required' => TRUE,
-    ];
-
     $form['formId'] = [
       '#type' => 'machine_name',
+      '#title' => $this->t('Form ID'),
       '#default_value' => $captcha_point->id(),
       '#machine_name' => [
         'exists' => 'captcha_point_load',
       ],
-      '#disable' => !$captcha_point->isNew(),
       '#required' => TRUE,
     ];
 
