59 lines
3.9 KiB
PHP
59 lines
3.9 KiB
PHP
<div class="content-wrapper">
|
|
|
|
<div class="content">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col">
|
|
<div class="card card-primary card-outline">
|
|
<div class="card-header">
|
|
<h5 class="m-0"><?php echo isset($stockLocation) ? 'Edit' : 'Add'; ?> <?php echo $pageTitle; ?> <?php showListButton($this->uri->segment(1) . "/" . $this->uri->segment(2) . "/list", "List " . $pageTitle); ?></h5>
|
|
</div>
|
|
<div class="card-body">
|
|
<form method="POST" action="<?php echo isset($stockLocation) ? site_url($this->uri->segment(1) . "/" . $this->uri->segment(2) . "/edit/" . $stockLocation->stocklocation_id) : site_url($this->uri->segment(1) . "/" . $this->uri->segment(2) . "/add"); ?>" enctype="multipart/form-data" name="tbl_stocklocations">
|
|
<div class="row">
|
|
<!--COL START-->
|
|
<div class="col">
|
|
<div class="form-group">
|
|
<label for="title"><?php myLang('Title'); ?></label><input type="text" class="form-control" id="title" value="<?php echo isset($stockLocation) ? $stockLocation->title : ''; ?>" name="title">
|
|
</div>
|
|
</div>
|
|
<!--COL END-->
|
|
</div>
|
|
<div class="row">
|
|
<!--COL START-->
|
|
<div class="col">
|
|
<div class="form-group">
|
|
<label for="description"><?php myLang('Description'); ?></label>
|
|
<textarea class="form-control" id="description" name="description"><?php echo isset($stockLocation) ? $stockLocation->description : ''; ?></textarea>
|
|
</div>
|
|
</div>
|
|
<!--COL END-->
|
|
</div>
|
|
<div class="row">
|
|
<!--COL START-->
|
|
<div class="col">
|
|
<div class="form-group">
|
|
<label for="display_order"><?php myLang('Display Order'); ?></label><input type="text" class="form-control" id="display_order" value="<?php echo isset($stockLocation) ? $stockLocation->display_order : ''; ?>" name="display_order">
|
|
</div>
|
|
</div>
|
|
<!--COL END-->
|
|
</div>
|
|
<div class="row">
|
|
<!--COL START-->
|
|
<div class="col">
|
|
<div class="form-group">
|
|
<label for="remarks"><?php myLang('Remarks'); ?></label>
|
|
<textarea class="form-control" id="remarks" name="remarks"><?php echo isset($stockLocation) ? $stockLocation->remarks : ''; ?></textarea>
|
|
</div>
|
|
</div>
|
|
<!--COL END-->
|
|
</div>
|
|
<button type="reset" class="btn btn-default">Reset</button> <button class="btn btn-primary" type="submit" name="submit"><?php echo isset($stockLocation) ? 'Update' : 'Save'; ?></button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|