I have a form with this input
...
<input type="number" name="age" data-bvalidator="max[120]">
...
<script src="{{ URL::to('theme/validate/jquery.bvalidator.min.js') }}"></script>
/* jQuery Validation Plugin - v1.18.0 */
when I enter 200, it shows
"Please enter a value less than or equal to {0}."
It doesn't show the validation value in the curly brackets. How do I fix it?