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

    <div class="special-form">
        <a href="<?php echo e(route('home')); ?>"><img src="<?php echo e(\App\Helpers\Helpers::logoUrl()); ?>" alt=""></a>
        <h3 class="text-center">REGISTER</h3>
        <?php if($errors->first()): ?>
            <span class="status-msg error-msg"><?php echo e($errors->first()); ?></span>
        <?php endif; ?>
        <hr>
        <?php echo Form::open(array('action' => 'UsersController@register')); ?>

        <div class="form-group">
            <label for="fullName" class="color-primary">Full Name:</label>
            <?php echo Form::text('fullName', null, array('class' => 'form-control', "placeholder" => "Full name", "autofocus" => "true" )); ?>

        </div>
        <div class="form-group">
            <label for="email" class="color-primary">Email:</label>
            <?php echo Form::text('email', null, array('class' => 'form-control', "placeholder" => "Email" )); ?>

        </div>
        <div class="form-group">
            <label for="password" class="color-primary">Password:</label>
            <?php echo Form::password('password', array('class' => 'form-control', "placeholder" => "Password" )); ?>

        </div>
        <div class="form-group">
            <?php echo Form::submit('Register', array('class' => 'btn btn-primary btn-wide' )); ?>

        </div>
        <?php echo Form::close(); ?>

        <p>Have an account? <a href="<?php echo e(route('login')); ?>">login</a></p>
    </div>

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



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