/home/techb158/immovalet.com/platform/plugins/ecommerce/src/Forms
NameSizeModeActions
Fields/-0755rm
AddShippingRegionForm.php16540644editdlrm
BrandForm.php27180644editdlrm
CustomerForm.php26500644editdlrm
FlashSaleForm.php24570644editdlrm
ProductAttributeSetForm.php37270644editdlrm
ProductCategoryForm.php32330644editdlrm
ProductCollectionForm.php25530644editdlrm
ProductForm.php111940644editdlrm
ProductLabelForm.php16250644editdlrm
ProductTagForm.php16830644editdlrm
TaxForm.php18810644editdlrm
Edit: /home/techb158/immovalet.com/platform/plugins/ecommerce/src/Forms/CustomerForm.php (2650B)
setupModel(new Customer) ->setValidatorClass(CustomerCreateRequest::class) ->withCustomFields() ->add('name', 'text', [ 'label' => trans('core/base::forms.name'), 'label_attr' => ['class' => 'control-label required'], 'attr' => [ 'placeholder' => trans('core/base::forms.name_placeholder'), 'data-counter' => 120, ], ]) ->add('email', 'text', [ 'label' => trans('plugins/ecommerce::customer.email'), 'label_attr' => ['class' => 'control-label required'], 'attr' => [ 'placeholder' => trans('plugins/ecommerce::customer.email_placeholder'), 'data-counter' => 60, ], ]) ->add('is_change_password', 'checkbox', [ 'label' => trans('plugins/ecommerce::customer.change_password'), 'label_attr' => ['class' => 'control-label'], 'attr' => [ 'class' => 'hrv-checkbox', ], 'value' => 1, ]) ->add('password', 'password', [ 'label' => trans('plugins/ecommerce::customer.password'), 'label_attr' => ['class' => 'control-label required'], 'attr' => [ 'data-counter' => 60, ], 'wrapper' => [ 'class' => $this->formHelper->getConfig('defaults.wrapper_class') . ($this->getModel()->id ? ' hidden' : null), ], ]) ->add('password_confirmation', 'password', [ 'label' => trans('plugins/ecommerce::customer.password_confirmation'), 'label_attr' => ['class' => 'control-label required'], 'attr' => [ 'data-counter' => 60, ], 'wrapper' => [ 'class' => $this->formHelper->getConfig('defaults.wrapper_class') . ($this->getModel()->id ? ' hidden' : null), ], ]); } }