File: /var/www/kosmicfarms/storage/framework/views/d4da1b5e9345a362ba152f43ade5379cff7aaf8e.php
<?php $__env->startSection('vendor'); ?>
<!-- vendor css -->
<link href="<?php echo e(asset('admin/lib/@fortawesome/fontawesome-free/css/all.min.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('admin/lib/ionicons/css/ionicons.min.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('admin/lib/typicons.font/typicons.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('admin/lib/prismjs/themes/prism-vs.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('admin/lib/quill/quill.core.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('admin/lib/quill/quill.snow.css')); ?>" rel="stylesheet">
<link href="<?php echo e(asset('admin/lib/quill/quill.bubble.css')); ?>" rel="stylesheet">
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<div class="d-sm-flex align-items-center justify-content-between mg-b-20 mg-lg-b-25 mg-xl-b-30">
<div>
<nav aria-label="breadcrumb">
<ol class="breadcrumb breadcrumb-style1 mg-b-10">
<li class="breadcrumb-item"><a href="#">Dashboard</a></li>
<li class="breadcrumb-item"><a href="#">Blog</a></li>
<li class="breadcrumb-item active" aria-current="page">Create Category</li>
</ol>
</nav>
<h4 class="mg-b-0 tx-spacing--1">Create Category</h4>
</div>
</div>
<!-- ============================================================== -->
<!-- Content Start -->
<!-- ============================================================== -->
<div data-label="Example" class="df-example demo-forms">
<h4 id="section2" class="mg-b-10">Add New Product</h4>
<p class="mg-b-30">Add new product information.</p>
<?php if($errors->any()): ?>
<?php $__currentLoopData = $errors->all(); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $error): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<div class="alert bg-danger alert-dismissible " role="alert"> <button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button> <strong>Error!</strong> <?php echo e($error); ?> </div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php endif; ?>
<form method="post" action="<?php echo e(url('/admin/blog/category/store')); ?>" class="form-horizontal" enctype="multipart/form-data">
<div class="row">
<div class="col col-sm-9">
<?php echo csrf_field(); ?>
<div class="form-group">
<label class="d-block">Category</label>
<input name="category" type="text" placeholder="New product name" value="<?php echo e(old('category')); ?>" required="required" class="form-control form-control-rounded">
</div>
<div class="form-group">
<label class="d-block">Description</label>
<textarea class="form-control" name="description"><?php echo e(old('description')); ?></textarea>
</div>
</div>
<div class="col col-sm-3">
</div>
<div class="col col-sm-12">
<div class="form-group">
<button type="submit" class="btn btn-success btn-icon"><i class="fa fa-floppy-o "></i>Create</button>
<button type="reset" class="btn btn-danger btn-icon"><i class="fa fa-times"></i>Cancel</button>
<a href="<?php echo e(URL::previous()); ?>" class="btn btn-warning btn-icon"><i class="fa fa-reply"></i>Back</a>
</div>
</div>
</div>
</form>
</div>
<!-- ============================================================== -->
<!-- Content Start -->
<!-- ============================================================== -->
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/kosmicfarms/resources/views/admin/blog/category/create.blade.php ENDPATH**/ ?>