<?php $__env->startSection('title'); ?>
    New user
<?php $__env->stopSection(); ?>

<?php $__env->startSection('styles'); ?>

<?php $__env->stopSection(); ?>

<?php $__env->startSection('content'); ?>

<img style="max-width: 30%;display: block; margin-top: -3rem; margin-left: auto; margin-right: auto;" src="/img/Prestige_Logo.jpg" />
<div class="app-title">
	<h1>Add a new user</h1>
</div>
<?php echo Form::open(['files' => true]); ?>

    <div class="row">
         <div class="large-4 columns">
            <label><i style="font-size: 2rem;" class="fa fa-user" aria-hidden="true"></i>Full Name <small class="red"><?php echo $errors->first('name'); ?></small></label>
             <?php echo Form::text('name'); ?>

         </div>
         <div class="large-4 columns">
            <label><i style="font-size: 2rem;" class="fa fa-envelope" aria-hidden="true"></i> Email <small class="red"><?php echo $errors->first('email'); ?></small></label>
            <?php echo Form::email('email'); ?>

         </div>
         <div class="large-4 columns">
            <label><i style="font-size: 2rem;" class="fa fa-building" aria-hidden="true"></i>Company <small class="red"><?php echo $errors->first('companyName'); ?></small></label>
            <?php echo Form::text('companyName'); ?>

         </div>
    </div>


    <div class="row">
         <div class="large-6 columns">
              <label><i style="font-size: 2rem;" class="fa fa-lock" aria-hidden="true"></i> Password <small class="red"><?php echo $errors->first('password'); ?></small></label>
                    <?php echo Form::password('password'); ?>

         </div>
         <div class="large-6 columns">
              <label><i style="font-size: 2rem;" class="fa fa-lock" aria-hidden="true"></i> Confirm Password <small class="red"><?php echo $errors->first('password1'); ?></small></label>
                    <?php echo Form::password('password1'); ?>

         </div>
    </div>

    <div class="row">
        <div class="large-12 columns">
            <button type="submit">Create User</button>
        </div>
    </div>
<?php echo Form::close(); ?>


<?php $__env->stopSection(); ?>

<?php $__env->startSection('scripts'); ?>

<?php $__env->stopSection(); ?>


<?php echo $__env->make('master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>