Added contact name to vendors

This commit is contained in:
root
2019-06-13 17:37:08 -04:00
parent 0686406e07
commit 4330254891
9 changed files with 35 additions and 12 deletions

View File

@@ -44,7 +44,7 @@
<div class="input-group-prepend">
<span class="input-group-text"><i class="fa fa-fw fa-flag"></i></span>
</div>
<select class="form-control" name="config_company_state">
<select class="form-control selectpicker show-tick" data-live-search="true" name="config_company_state">
<option value="">Select a state...</option>
<?php foreach($states_array as $state_abbr => $state_name) { ?>
<option <?php if($config_company_state == $state_abbr) { echo "selected"; } ?> value="<?php echo $state_abbr; ?>"><?php echo $state_name; ?></option>