I am little bit confuse for add validation valid_date, this is what I am try for achieve that.
$val->add('start_date', 'Start Date')
->add_rule('trim')
->add_rule('valid_date','mm/dd/yyyy')
->add_rule('max_length', 10);
when I am try to submit with false case that not show error , maybe something gone wrong on rule vali_date , I am use fuelphp 1.6+, can someone give me the truth of validation valid_date ?
Note :
I have solve by my self I am wrong format this is the true