How do I configure Checkboxes in Asp.Net MVC Razor.
Since in the documentation we have the following configuration Materialize for checkboxes :
<p>
<label>
<input type = "checkbox" />
<span> Network </span>
</label>
</p>
And in Razor I could not perform this configuration.
<div class = "input-field col s12">
@Html.EditorFor (model => model.AnnualDestaque)
@Html.LabelFor (model => model.AnnualDestaque)
@Html.ValidationMessageFor (model => model.AnnualDestaque, "", new {@class = "text-danger"})
</div>