@using (Html.BeginForm("Create", "Customers"))
{
<div class = "form-group">
@Html.LabelFor(m => m.Name)
@Html.TextBoxFor(m => m.Name, new {@class = "form-control"})
</div>
<div class="form-group">
<label>Date of Birth</label>
@Html.TextBoxFor(m => m.Birthday, new { @class = "form-control" })
</div>
<div class="checkbox">
<label>
@Html.CheckBoxFor(m => m.IsSubscribeToNesletter) Subscribed to Newsletter
</label>
</div>
}