<?php $__env->startSection('title'); ?>
    Add Technology|Golars Networks
<?php $__env->stopSection(); ?>
<?php $__env->startSection('main'); ?>

 

<div class="bdmdiv">
	<!--<a class="bckimg" href="<?php echo URL::to('/');; ?>/technologies"><img src="<?php echo URL::to('/');; ?>/img/back.png" alt="back" width="46" height="46" /></a>-->
    <h1 class="name_hed">Create Technology</h1>
    <div class="brdcom">
    	<ul>
            <li><a href="<?php echo URL::to('/');; ?>">Home</a></li>
            <li><a href="<?php echo URL::to('/');; ?>/technologies">Technologies List</a></li>
            <li>Add Technology</li>
        </ul>
    </div>
</div>



<?php if ($errors->any()): ?>
	<ul>
		<?php echo implode('', $errors->all('<li class="error">:message</li>')); ?>
	</ul>
<?php endif; ?>
<div class="create-adminuser">
<?php echo Form::open(array('route' => 'technologies.store', 'id' => 'createTechnologies')); ?>
	<ul  class="create_roll">
        <li>
            <?php echo Form::label('name', 'Name:'); ?>
            <?php echo Form::text('name'); ?>
        </li>

        <li class="errdesc ck">
            <?php echo Form::label('description', 'Description:'); ?>
            <?php echo Form::textarea('description',null,array('class' => 'ckeditor')); ?>
        </li>

		<li class="techedit">
			<?php echo Form::submit('Submit', array('class' => 'btn btn-info')); ?>
			<?php echo link_to_route('technologies.index', 'Cancel', null, array('class' => 'btn btn-info')); ?>
		</li>
	</ul>
<?php echo Form::close(); ?>
</div>

<?php if ($scripts = 'js/technologies/create_technologies.js'): ?> <?php endif; ?>
<?php $__env->stopSection(); ?>

<?php echo $__env->make('layouts.scaffold', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>