File: /home/xedaptot/naniguide.com/deals/admin/views/edit.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 _EDITITEM; ?></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">
<input type="hidden" value="<?php echo $store['store_id']; ?>" name="store_id">
<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" value="<?php echo $store['store_title']; ?>" name="store_title" class="form-control" required="">
<label><?php echo _TABLEFIELDSLUG; ?></label>
<input type="hidden" value="<?php echo $store['store_slug']; ?>" name="store_slug_save">
<input type="text" placeholder="<?php echo $store['store_slug']; ?>" name="store_slug" class="form-control">
<label><?php echo _TABLEFIELDDESCRIPTION; ?></label>
<textarea type="text" class="mceNoEditor form-control" name="store_description"><?php echo $store['store_description']; ?></textarea>
<label class="control-label"><?php echo _TABLEFIELDFEATURED; ?></label>
<select class="custom-select form-control" name="store_featured" required="">
<?php
if($store['store_featured'] == 1)
{
echo '<option value="1" selected="selected">'._YESTEXT.'</option>';
echo '<option value="0">'._NOTEXT.'</option>';
}
else {
echo '<option value="0" selected="selected">'._NOTEXT.'</option>';
echo '<option value="1">'._YESTEXT.'</option>';
}
?>
</select>
<br>
<br>
<fieldset>
<legend><?php echo _SEO; ?></legend>
<label class="no-margin-top"><?php echo _SEOTITLE; ?></label>
<input type="text" value="<?php echo $store['store_seotitle']; ?>" name="store_seotitle" class="form-control">
<label><?php echo _SEODESCRIPTION; ?></label>
<textarea type="text" class="form-control" name="store_seodescription"><?php echo $store['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">
<?php
if($store['store_status'] == 1){
echo '<option value="1" selected="selected">'._ENABLED.'</option>';
echo '<option value="0">'._DISABLED.'</option>';
} else{
echo '<option value="0" selected="selected">'._DISABLED.'</option>';
echo '<option value="1">'._ENABLED.'</option>';
}
?>
</select>
</div>
<div class="block col-md-12">
<label><?php echo _TABLEFIELDIMAGE; ?></label>
<div class="new-image" id="image-preview" style="background: url(../../images/<?php echo $store['store_image'] ?>);">
<label for="image-upload" id="image-label"><?php echo _CHOOSEFILE; ?></label>
<input type="hidden" value="<?php echo $store['store_image']; ?>" name="store_image_save">
<input type="file" name="store_image" id="image-upload" />
</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 _UPDATEITEM; ?></button>
<button class="btn btn-danger deleteItem" type="button" data-url="../controller/delete_store.php?id=<?php echo $store['store_id']; ?>" data-redirect="../controller/categories.php"><?php echo _DELETEITEM; ?></button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</section>