The asterisk for required fields is a well established standard even when a form mentions "all fields are required".
The asterisk can be added/removed through custom CSS such as
span.form-required {
display: none;
}
or
span.form-required {
display:none !important;
}
Please test before posting into production.