Viewing file: 7e7b512912d3da43888a85ca1bc573d1.php (2.47 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> <?php echo e(trans('admin.blog')); ?> <?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<section class="content">
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-header">
<h2 class="card-title"><?php echo e(trans('admin.blog_section')); ?> </h2>
</div>
<?php
$blog_section = json_decode(get_settings('blog_section'));
?>
<div class="card-body">
<form action="<?php echo e(route('admin.theme.blog.section.store')); ?>" method="POST" enctype="multipart/form-data">
<?php echo csrf_field(); ?>
<div class="row">
<div class="col-lg-12">
<div class="form-group">
<label for="title">Title</label>
<input value="<?php echo e(isset($blog_section->title)?$blog_section->title:''); ?>" type="text" name="title" class="form-control" id="title"
placeholder="Title">
</div>
</div>
<div class="col-lg-12">
<div class="form-group">
<label for="description">Short Description</label>
<textarea name="short_description" id="description" class="form-control"
placeholder="Enter Short Description"><?php echo e(isset($blog_section->short_description)?$blog_section->short_description:''); ?></textarea>
</div>
</div>
</div>
<button type="submit" class="btn btn-primary mt-5">Submit</button>
</form>
</div>
</div>
</div>
</div>
</section>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('extra-scripts'); ?>
<script>
</script>
<?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH E:\latest protfolio\resources\views/admin/blog_management/index.blade.php ENDPATH**/ ?>
|