If my model have
[DisplayName(\"First Name\")] public string firstName { get; set; }
Then I can print it in the View with LabelFor
@Html.DisplayFor(model => model.acc_first)
should work for you. If not, try just
@Model.acc_first
Either one should work fine.