<?php $__env->startSection('content'); ?>
    <?php if(Session::has('error')): ?>
        <div class="alert alert-danger fade in">
            <button type="button" class="close" data-dismiss="alert" aria-hidden="true">�</button>
            <strong><?php echo e(trans(Session::get('reason'))); ?></strong>
        </div>
    <?php endif; ?>
    <h1 class="content-heading"><?php echo e(t('Registration')); ?></h1>
    <h3 class="content-heading">
        <div class="form-inline">
            <div class="form-group">
                <div class="form-group">&nbsp;<a href="<?php echo e(url('auth/facebook')); ?>"><img src="<?php echo e(asset('static/img/f.png')); ?>"></a></div>
                <div class="form-group">&nbsp;<a href="<?php echo e(url('auth/google')); ?>"><img src="<?php echo e(asset('static/img/g.png')); ?>"></a></div>
                <div class="form-group">&nbsp;<a href="<?php echo e(url('auth/twitter')); ?>"><img src="<?php echo e(asset('static/img/t.png')); ?>"></a></div>
            </div>
        </div>
    </h3>
    <?php echo Form::open(); ?>


    <div class="form-group">
        <label for="email"><?php echo e(t('Your Email')); ?>*</label>
        <?php echo Form::text('email',null,['class'=>'form-control input-lg','type'=>'email','id'=>'email','placeholder'=>t('Your Email'),'required']); ?>

    </div>

    <div class="form-group">
        <label for="fullname"><?php echo e(t('Name')); ?>*</label>
        <?php echo Form::text('fullname',null,['class'=>'form-control input-lg','id'=>'fullname','placeholder'=>t('Name'),'required'=>'required']); ?>

    </div>

    <div class="form-group">
        <label for="fullname"><?php echo e(t('Select Username')); ?>*</label>
        <?php echo Form::text('username',null,['class'=>'form-control input-lg','id'=>'fullname','placeholder'=>t('Select Username'),'required'=>'required']); ?>

    </div>

    <div class="form-group">
        <label for="password"><?php echo e(t('Password')); ?>

            <small>*</small>
        </label>
        <?php echo Form::password('password',['class'=>'form-control input-lg','placeholder'=>t('Password'),'autocomplete'=>'off','required'=>'required']); ?>

    </div>

    <div class="form-group">
        <label for="password_confirmation"><?php echo e(t('Retype Password')); ?>

            <small>*</small>
        </label>
        <?php echo Form::password('password_confirmation',['class'=>'form-control input-lg','placeholder'=>t('Retype Password'),'autocomplete'=>'off','required'=>'required']); ?>

    </div>

    <div class="form-group">
        <label for="recaptcha"><?php echo e(t('Type these words')); ?>

            <small>*</small>
        </label>
        <?php echo Recaptcha::render(); ?>

    </div>
    <p>
        <small><?php echo e(t('By clicking on the "create account" you accept the following')); ?> <a href="<?php echo e(route('tos')); ?>"><?php echo e(t('terms and conditions')); ?></a> <?php echo e(t('and our')); ?> <a href="<?php echo e(route('privacy')); ?>"><?php echo e(t('privacy policy')); ?></a></small>
    </p>
    <div class="form-group">
        <?php echo Form::submit(t('Create New Account'),['class'=>'btn btn-success btn-lg btn-block']); ?>

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

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