Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

use Moose;
=head1 NAME
HTML::FormHandler::Field::Nested - for nested elements of compound fields
=head1 SYNOPSIS
This field class is intended for nested elements of compound fields. It
does no particular validation, since the compound field should handle
that.
=head2 parent
This attribute must be set on a nested field
=cut
has '+errors_on_parent' => ( default => 1 );
__PACKAGE__->meta->make_immutable;
no Moose;
1;