Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7744623
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T09:48:43+00:00 2026-06-01T09:48:43+00:00

I have a minimum age custom validator which is straight forward enough: The constraint(Minage.php)

  • 0

I have a minimum age custom validator which is straight forward enough:

The constraint(Minage.php)

namespace MyCompany\VisitBundle\Component\Validator\Constraints;
use Symfony\Component\Validator\Constraint;

/**
 * @Annotation
 */
class Minage extends Constraint
{
    public $message = 'The user must be {{ age }} or over';
    public $age = 18;

    public function validatedBy()
    {
        return get_class($this).'Validator';
    }
}

The validator (MinageValidator.php)

namespace MyCompany\VisitBundle\Component\Validator\Constraints;
use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;

class MinageValidator extends ConstraintValidator
{
    public function isValid($value, Constraint $constraint)
    {
        $minAge = strtotime(sprintf("-%s YEAR", $constraint->age));
        if(strtotime($value->format("Y-m-d")) > $minAge)
        {
            $this->setMessage($constraint->message,
                              array('{{ age }}' => $constraint->age));
            return false;
        }
        return true;
    }
}

In my entity (stripping parts which aren’t important)

use MyCompany\VisitBundle\Component\Validator\Constraints as MyCompanyAssert;

/**
 * @ORM\Column(name="birth_date", type="datetime")
 * @MyCompanyAssert\Minage(age="18")
 */
private $birth_date;

And in twig:

{{ form_errors(form.birth_date) }}
{{ form_widget(form.birth_date) }}

I know for sure the validator is returning false but my form refuses to show the error message All other validators (out-of-the-box not custom) work fine and show their respective errors. Any idea?

Translations are disabled, so it won’t be looking for a translation in a file.

Thanks in advance.

UPDATE: form_errors(form.birth_date) does not work but form_errors(form) does? why is it assigned as a global form error?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T09:48:44+00:00Added an answer on June 1, 2026 at 9:48 am

    The reason of this behavior is error bubbling. Set the field’s error_bubbling option to false.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a listbox in which i have to give minimum 2 files for
In grails I can set the password field to have a minimum size constraint
Brief Idea about the flow : I have say minimum 1 and maximum 18
How can I find what databases I have a minimum of read access to
I have one text box and i have to show minimum date of the
I have some code that currently checks for minimum and maximum lentgh. I want
I have a habit of keeping my variable usage to a bare minimum. So
I have notices following: if I have a project with minimum files in res
Right now I have def min(array,starting,ending) minimum = starting for i in starting+1 ..ending
Suppose I have the following: A region defined by minimum and maximum latitude and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.