I would like to know how to convert the following HTML form into ASP.Net MVC Razor @Html.BeginForm. The problem is that I don't know how to inject the html form parameters like data-required-label="@Html.GetLabel("form-required-field")"
or data-required-group-label="@Html.GetLabel("form-choice-makechoice")"
<form class="form"
enctype="multipart/form-data"
novalidate
data-required-label="@Html.GetLabel("form-required-field")"
data-required-group-label="@Html.GetLabel("form-choice-makechoice")"
data-api-endpoint="/api/form"
method="post">