I want to pass Former to array and then view it like
// in view
$form = array(
Former::text(),
Former::text(),
Former::text(),
);
foreach($form as $value){
echo $value.'<br>';
}
It have problem with errors message when validator->fails(), by return duplicated of errors message in the text box nearly.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community