We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, Can i have translate the property "error_message" on the form?
$this ->add('nome', 'text', [ 'label' => 'Nome Paciente', 'rules' => 'required|min:5', 'error_messages' => [ 'nome.required' => 'Nome não pode ficar em branco.' ] ] )
Error:
FORM HTML:
<div class="form-group"> <label for="nome" class="control-label required">Nome Paciente</label> <input class="form-control" required="required" minlength="5" name="nome" type="text" id="nome"> </div>
The text was updated successfully, but these errors were encountered:
Works for me. Maybe the "Fill out this field" is your browser's? My browser says "Please fill in this field". Normal Laravel includes the field name.
Sorry, something went wrong.
No branches or pull requests
Hello,
Can i have translate the property "error_message" on the form?
Error:
FORM HTML:
The text was updated successfully, but these errors were encountered: