Gregwar\Formidable\Fields\Multiple::checkForms PHP Method

checkForms() public method

public checkForms ( )
    public function checkForms()
    {
        $errors = array();
        foreach ($this->forms as $form) {
            $errors = array_merge($errors, $form->check());
        }
        return $errors;
    }