- or download this
{
email => qw(required, email),
age => qw(integer, min:18),
}
- or download this
{
required => qw(email),
...
integer => qw(age),
min => { filed => ‘age’, num => 18 },
}
- or download this
{
required => … ,
validators => { … }
}
- or download this
use Dancer2;
...
redirect '/form';
};