diff --git a/src/CoreShop/Bundle/CustomerBundle/Form/Type/ResetPasswordType.php b/src/CoreShop/Bundle/CustomerBundle/Form/Type/ResetPasswordType.php index c2f7c0e222..6c120516b6 100644 --- a/src/CoreShop/Bundle/CustomerBundle/Form/Type/ResetPasswordType.php +++ b/src/CoreShop/Bundle/CustomerBundle/Form/Type/ResetPasswordType.php @@ -27,8 +27,8 @@ public function buildForm(FormBuilderInterface $builder, array $options) $builder ->add('password', RepeatedType::class, [ 'type' => PasswordType::class, - 'first_options' => ['label' => 'coreshop.form.customer.password'], - 'second_options' => ['label' => 'coreshop.form.customer.password_repeat'], + 'first_options' => ['label' => 'coreshop.form.customer.new_password'], + 'second_options' => ['label' => 'coreshop.form.customer.new_password_repeat'], ]); }