Added new category buttons to certian dropdowns to quickly add a category without going to setting then category also a few fixes here and there

This commit is contained in:
johnny@pittpc.com
2021-02-06 15:03:11 -05:00
parent 1ede4bc795
commit d2b37a8940
34 changed files with 531 additions and 51 deletions

View File

@@ -513,7 +513,7 @@ if(isset($_POST['add_company_settings'])){
<span class="input-group-text"><i class="fa fa-fw fa-flag"></i></span>
</div>
<select class="form-control select2" name="state">
<option value="">Select a state...</option>
<option value="">- State -</option>
<?php foreach($states_array as $state_abbr => $state_name) { ?>
<option value="<?php echo $state_abbr; ?>"><?php echo $state_name; ?></option>
<?php } ?>