Remove colons from rider form labels
This commit is contained in:
parent
40a4e96632
commit
0694f56ce2
1 changed files with 7 additions and 7 deletions
|
|
@ -36,24 +36,24 @@
|
|||
<div class="m-portlet__body">
|
||||
<div class="form-group m-form__group row no-border">
|
||||
<div class="col-lg-6">
|
||||
<label data-field="first_name">First Name:</label>
|
||||
<label data-field="first_name">First Name</label>
|
||||
<input type="text" name="first_name" class="form-control m-input" value="{{ obj.getFirstName() }}">
|
||||
<div class="form-control-feedback hide" data-field="first_name"></div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<label data-field="last_name">Last Name:</label>
|
||||
<label data-field="last_name">Last Name</label>
|
||||
<input type="text" name="last_name" class="form-control m-input" value="{{ obj.getLastName() }}">
|
||||
<div class="form-control-feedback hide" data-field="last_name"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group m-form__group row no-border">
|
||||
<div class="col-lg-6">
|
||||
<label data-field="contact_no">Contact Number:</label>
|
||||
<label data-field="contact_no">Contact Number</label>
|
||||
<input type="text" name="contact_no" class="form-control m-input" value="{{ obj.getContactNumber() }}">
|
||||
<div class="form-control-feedback hide" data-field="contact_no"></div>
|
||||
</div>
|
||||
<div class="col-lg-6">
|
||||
<label data-field="hub">Hub:</label>
|
||||
<label data-field="hub">Hub</label>
|
||||
<select class="form-control m-input" id="hub" name="hub">
|
||||
<option value=""></option>
|
||||
{% for hub in hubs %}
|
||||
|
|
@ -65,7 +65,7 @@
|
|||
</div>
|
||||
<div class="form-group m-form__group row no-border">
|
||||
<div class="col-lg-6">
|
||||
<label data-field="plate_number">Plate Number:</label>
|
||||
<label data-field="plate_number">Plate Number</label>
|
||||
<input type="text" name="plate_number" class="form-control m-input" value="{{ obj.getPlateNumber() }}">
|
||||
<div class="form-control-feedback hide" data-field="plate_number"></div>
|
||||
</div>
|
||||
|
|
@ -74,9 +74,9 @@
|
|||
<div class="col-lg-6">
|
||||
<label data-field="image_file">
|
||||
{% if mode == 'update' %}
|
||||
Replace Picture:
|
||||
Replace Picture
|
||||
{% else %}
|
||||
Picture:
|
||||
Picture
|
||||
{% endif %}
|
||||
</label>
|
||||
<div class="m-dropzone dropzone m-dropzone--primary" action="{{ url('rider_upload_image') }}" id="image-file">
|
||||
|
|
|
|||
Loading…
Reference in a new issue