When I save, the controller does not receive the file of the form but the other file format still receives.
Here's my view code:
<form id="myForm" class="form-horizontal" action="" method="post" enctype="multipart/form-data">
<div class="form-group">
<label for="name" class="label-control col-md-3">Customer Name</label>
<div class="col-md-8">
<input type="text" name="txtCustomerName" class="form-control">
</div>
</div>
<div class="form-group">
<label for="mail" class="label-control col-md-3">Customer Mail</label>
<div class="col-md-8">
<input type="text" name="txtCustomerMail" class="form-control">
</div>
</div>
<div class="form-group">
<label for="phone" class="label-control col-md-3">Customer Phone</label>
<div class="col-md-8">
<input type="text" name="txtCustomerPhone" class="form-control">
</div>
</div>
<div class="form-group">
<label for="image" class="label-control col-md-3">Customer Image</label>
<div class="col-md-8">
<input type="file" name="fileCustomerImage" class="form-control">
</div>
</div>
</form>