The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

FormValidator::Nested - form validation

SYNOPSIS

    use FormValidator::Nested;
    use Class::Param;

    my $req = Class::Param->new({ ... });
    my $fvt = FormValidator::Nested->new({
        profile_provider => FormValidator::Nested::ProfileProvider::YAML->new({
            dir => 't/var/profile',
        }),
    });
    my $res = $fvt->validate($req, 'login');
    if ( $res->has_error ) {
        my $error_param_ref = $res->error_params;
        while ( my ( $key, $error_params ) = %{$error_param_ref} ) {
            foreach my $error_param ( @{$error_params} ) {
                warn $error_param->msg;
            }
        }
    }

DESCRIPTION

FormValidator::Nested is form validation support nested parameter.

AUTHOR

Masahiro Chiba <nihen@megabbs.com>

SEE ALSO

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.