56 lines
2.2 KiB
PHP
56 lines
2.2 KiB
PHP
|
<?php $__env->startSection('main_content'); ?>
|
||
|
<?php if($errors -> any() ): ?>
|
||
|
<div class="alert alert-danger">
|
||
|
<ul>
|
||
|
<?php $__currentLoopData = $errors->all(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $error): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
|
||
|
<li><?php echo e($error); ?></li>
|
||
|
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<?php endif; ?>
|
||
|
<h1>Edit Category -</h1>
|
||
|
<div class="row">
|
||
|
<div class="col-md-6">
|
||
|
<form action="<?php echo e(url('cms/categories/' . $categories[0]->id )); ?>" method="post" enctype="multipart/form-data">
|
||
|
<?php echo e(csrf_field()); ?>
|
||
|
|
||
|
<?php echo e(method_field('PUT')); ?>
|
||
|
|
||
|
<input type="hidden" name="item_id" value="<?php echo e($categories[0]->id); ?>">
|
||
|
<div class="form-group">
|
||
|
<label for="title" class="form-label"><b>Title : </b></label>
|
||
|
<input value="<?php echo e($categories[0]->title); ?>" id="title" name="title" type="text" class="origin_text form-control">
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label for="url" class="form-label"><b>Url :</b></label>
|
||
|
<input value="<?php echo e($categories[0]->url); ?>" id="url" name="url" type="text" class="target-text form-control">
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<label for="article" class="form-label"><b>Article : </b></label>
|
||
|
<textarea placeholder="Say Somthing Good" id="article"class="form-control" name="article" rows="8" cols="80"><?php echo e($categories[0]->article); ?></textarea>
|
||
|
</div>
|
||
|
|
||
|
<div class="form-group">
|
||
|
<img width="100" src="<?php echo e(asset('images').'/' . $categories[0]->image); ?>" alt="">
|
||
|
<br>
|
||
|
<label for="image" class="form-label"><b>Change Category Image :</b></label>
|
||
|
<input type="file" name="image" id="image" value="">
|
||
|
</div>
|
||
|
|
||
|
|
||
|
<div class="form-group text-center">
|
||
|
<a href="<?php echo e(url('cms/categories')); ?>" class="btn btn-default">Cancel</a>
|
||
|
<button type="submit" class="btn btn-primary"><i class="icon-profile"></i> Save Page</button>
|
||
|
</div>
|
||
|
</form>
|
||
|
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<?php $__env->stopSection(); ?>
|
||
|
|
||
|
<?php echo $__env->make('cms.cms-master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
|