File: /var/www/ivs.kaunokolegija.lt/laravel/storage/framework/views/2d5485c8133e944bd0d045e0e9b987f6.php
<?php $__env->startSection('content'); ?>
<div class="card">
<div class="card-header">
<?php echo e(trans('global.add')); ?>
</div>
<div class="card-body">
<form method="POST" action="<?php echo e(route("admin.permissions.store")); ?>" enctype="multipart/form-data">
<?php echo csrf_field(); ?>
<div class="form-group">
<label class="required" for="title"><?php echo e(trans('cruds.permission.fields.title')); ?></label>
<input class="form-control <?php echo e($errors->has('title') ? 'is-invalid' : ''); ?>" type="text" name="title" id="title" value="<?php echo e(old('title', '')); ?>" required>
<?php if($errors->has('title')): ?>
<span class="text-danger"><?php echo e($errors->first('title')); ?></span>
<?php endif; ?>
<span class="help-block"><?php echo e(trans('cruds.permission.fields.title_helper')); ?></span>
</div>
<div class="form-group">
<button class="btn btn-success" type="submit">
<?php echo e(trans('global.save')); ?>
</button>
</div>
</form>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/ivs.kaunokolegija.lt/laravel/resources/views/admin/permissions/create.blade.php ENDPATH**/ ?>