package ui type FormFieldProps struct { Label string For string Field templ.Component Error string Hint string } templ FormField(props FormFieldProps) {
if props.Label != "" { } if props.Field != nil { @props.Field } if props.Hint != "" {

{ props.Hint }

} if props.Error != "" {

{ props.Error }

}
}