-
Testing these two uuid's returns false:
- c9cfe3e0-e298-7a36-9c88-7c2acf143bab
- c9cfe3e0-e298-7a36-9c88-7c2acf144eec
Whereas
```js
!/^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4…
-
When validating MACAddress, there is an option where the user passes options e.g `no_colons`.
In my earlier PR #1065, I raised that concern and just needed to add as an issue so that we can look at …
-
I have a schema validation like this one:
```js
token: {
in: ['body', 'header'],
isJWT: true,
optional: false,
custom: {
options: async (value, …
-
-
if phone number start with "015" it shoud be valid
Check this
https://en.wikipedia.org/wiki/Telephone_numbers_in_Egypt
-
Say you've got a couple forms `form1` and `form2` like the example in the readme:
```
let form = Form({
fields: {
email: {
label: 'Email Address',
rules: 'required|email'
…
-
Is there any plans to implement conversion from Laravel's form request classes to javascript equivalent on the fly? Maybe not in exactly this package...
Something like:
```php
{!! ValidatorJs::fo…
-
This relies on JavaScript's interpretation of what is considered a date, which is flawed. For example, JS interprets "a-08-02 " as " 8/2/2001.
It would be nice to have additional functionality built…
-
Hi!, I am using synchronous validation and I am getting an error in my form before any input in the confirmation field. Shouldn't the 'confirmed' rule actually display an error on the _confirmation fi…
peshi updated
5 years ago
-
```
unitPrice: 'required|numeric|greater_than:unitCost',
unitCost: 'required|numeric|less_than:unitPrice'
```
Is it possible to do something of the like using the library?