<form id="myForm" method="post" enctype="multipart/form-data">
@Html.Label("First Name")
<input class="form-control" id="FirstName" name="FirstName" type="text"/>
@Html.Label("Last Name")
<input class="form-control" id="LastName" name="LastName" type="text"/>
@Html.Label("Email Id")
@Html.TextBox("EmailId", "", new { @class = "form-control", type = "email" })
@Html.Label("Profile Image")
<input type="file" name="ProfileImage" id="ProfileImage" class="form-control" value="ProfileImage">
</form>