https://twill.io logo
Hey I have this form field set maxlength to 115,...
# ❓questions
b
Hey I have this form field set maxlength to 115, but I only get the warning that I passed the minimum length. Is there a way to block the typing at 115?
Copy code
@formField('input', [
    'name' => 'short_description',
    'label' => __('form.short_description'),
    'translated' => true,
    'maxlength' => 115,
    'placeholder' => __('form.admin.course.short_description.placeholder'),
    'type' => 'textarea',
    'rows' => 3
])