home
/
zktecojo
/
public_html
/
app
/
storage
/
views
/
test
➕ New
📤 Upload
✎ Editing:
1d86118de4160c42dd81017ad71d88a8
← Back
<?php echo $__env->make('admin.common.header', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> <?php echo $__env->make('admin.common.leftmenu', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?> <aside class="right-side"> <!-- Content Header (Page header) --> <section class="content-header"> <h1> Dashboard <small>Control panel</small> </h1> <ol class="breadcrumb"> <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li> <li>Services</li> <li class="active">edit</li> </ol> </section> <!-- Main content --> <section class="content"> <div class="box box-warning"> <div class="box-header"> <h3 class="box-title">Edit Service</h3> </div> <!-- /.box-header --> <div class="box-body"> <?php echo $messages; foreach($serviceList as $rsService){ echo Form::open(array('url' => array('admin/services/edit/'.$rsService->service_id),'files'=>true)); ?> <input type="hidden" name="editid" value="<?php echo $rsService->service_id;?>" /> <input type="hidden" name="service_image_old_name" value="<?php echo $rsService->service_image_name;?>" /> <div class="row"> <div class="col-sm-4"> <div class="form-group"> <label>Name</label> <input type="text" name="service_name" class="form-control" placeholder="Enter the service name here" value="<?php echo $rsService->service_name;?>" required="" /> </div> <div class="form-group"> <label>Description</label> <textarea name="service_description" class="form-control" placeholder="Enter the service short content here" ><?php echo $rsService->service_description;?></textarea> </div> <div class="form-group"> <label>Upload Image</label><br><?php if(!empty($rsService->service_image_name)){ ?> <img src="<?php echo URL::to('assets/uploads/service/small/'.$rsService->service_image_name);?>" width="100"><?php }?><br> <input type="file" name="service_image_name" class="form-control" placeholder="" /> </div> <div class="form-group"> <div class="col-sm-4"> <label>Priority</label> <input type="text" name="service_priority" class="form-control" placeholder="" value="<?php echo $rsService->service_priority;?>" /> </div> <div class="col-sm-6"> <label>Status</label> <select name="service_status" class="form-control"> <option value="1" <?php echo ($rsService->service_status==1)?"selected":"";?>>Activate</option> <option value="0" <?php echo ($rsService->service_status==0)?"selected":"";?>>Deactivate</option> </select> </div> </div> </div> <div class="col-sm-8"> <div class="form-group"> <label>Content</label> <textarea name="service_fullcontent" id="editor" class="form-control" rows="15" cols="80"><?php echo $rsService->service_fullcontent;?></textarea> </div> </div> <div class="form-group"></div> <div class="form-group"> <input type="submit" name="updatebtnsubmit" value="Submit" class="btn btn-primary"> <a href="<?php echo URL::to('admin/services'); ?>" class="btn btn-primary">Close</a> </div> <?php echo Form::close(); ?> <?php } ?> </div> <!-- /.box-body --> </div> </section><!-- /.content --> </aside> <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.2/jquery.min.js"></script> <script src="<?php echo URL::to('assets/admin/js/plugins/ckeditor/ckeditor.js'); ?>" type="text/javascript"></script> <script type="text/javascript"> $(function() { CKEDITOR.replace('editor'); }); </script> <?php echo $__env->make('admin.common.footer', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel