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>Red</span>
</label>
</p>
And in Razor I was unable to perform this configuration.
<div class="input-field col s12">
@Html.EditorFor(model => model.AnuncioDestaque)
@Html.LabelFor(model => model.AnuncioDestaque)
@Html.ValidationMessageFor(model => model.AnuncioDestaque, "", new { @class = "text-danger" })
</div>