File: /home/xedaptot/naniguide.com/deals/admin/views/new.store.view.php
<?php require'sidebar.php'; ?>
<!--Page Container-->
<section class="page-container">
<div class="page-content-wrapper">
<!--Main Content-->
<div class="content sm-gutter">
<div class="container-fluid padding-25 sm-padding-10">
<div class="row">
<div class="col-12">
<div class="section-title">
<h5><?php echo _ADDITEM; ?></h5>
</div>
</div>
<div class="col-md-12">
<div class="form-block mb-4">
<form enctype="multipart/form-data" action="<?php echo htmlspecialchars($_SERVER['PHP_SELF']); ?>" method="post">
<div class="form-row">
<div class="form-group col-md-9">
<div class="block col-md-12">
<label class="required"><?php echo _TABLEFIELDTITLE; ?></label>
<input type="text" placeholder="" name="store_title" class="form-control" required="">
<label><?php echo _TABLEFIELDDESCRIPTION; ?></label>
<textarea type="text" class="mceNoEditor form-control" name="store_description"></textarea>
<label class="control-label"><?php echo _TABLEFIELDFEATURED; ?></label>
<select class="custom-select form-control" name="store_featured">
<option value="0"><?php echo _NOTEXT; ?></option>
<option value="1"><?php echo _YESTEXT; ?></option>
</select>
<br>
<br>
<fieldset>
<legend><?php echo _SEO; ?></legend>
<label class="no-margin-top"><?php echo _SEOTITLE; ?></label>
<input type="text" name="store_seotitle" class="form-control">
<label><?php echo _SEODESCRIPTION; ?></label>
<textarea type="text" class="mceNoEditor form-control" name="store_seodescription"></textarea>
</fieldset>
</div>
</div>
<div class="form-group col-md-3 sidebar">
<div class="block col-md-12">
<label><?php echo _TABLEFIELDSTATUS; ?></label>
<select class="custom-select form-control" name="store_status">
<option value="1" selected=""><?php echo _ENABLED; ?></option>
<option value="0"><?php echo _DISABLED; ?></option>
</select>
</div>
<div class="block col-md-12">
<label class="required"><?php echo _TABLEFIELDIMAGE; ?></label>
<div class="new-image" id="image-preview">
<label for="image-upload" id="image-label"><?php echo _CHOOSEFILE; ?></label>
<input type="file" name="store_image" id="image-upload" required="" />
</div>
<span class="text-danger recomendedsize"><?php echo _RECOMMENDEDSIZE; ?> <b>350 x 350</b> </span>
<br/>
</div>
<button class="btn btn-primary" type="submit" name="save"><?php echo _SAVECHANGES; ?></button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>