@using LeafWeb.Web.Utility @model object
@Html.LabelFor(m => m, new { @class = "control-label" })
@Html.TextAreaFor( m => m, 8, 8, ViewBag.ClearTextField == true ? new { @class = "form-control input-block-level clear-text-field" } : new { @class = "form-control input-block-level" } ) @Html.ValidationMessageFor(m => m, null, new { @class = "help-block" })