Viewing file: 424b28ddee725d78e3d46db82b677ffb7fe193b2.php (7.23 KB) -rwxrwxrwx Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('content'); ?> <?php echo $__env->make('layouts.headers.guest', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
<div class="container mt--8 pb-5"> <!-- Table --> <div class="row justify-content-center"> <div class="col-lg-6 col-md-8"> <div class="card bg-secondary shadow border-0"> <div class="card-header bg-transparent pb-5"> <div class="text-muted text-center mt-2 mb-4"><small><?php echo e(__('Sign up with')); ?></small></div> <div class="text-center"> <a href="#" class="btn btn-neutral btn-icon mr-4"> <span class="btn-inner--icon"><img src="<?php echo e(asset('argon')); ?>/img/icons/common/github.svg"></span> <span class="btn-inner--text"><?php echo e(__('Github')); ?></span> </a> <a href="#" class="btn btn-neutral btn-icon"> <span class="btn-inner--icon"><img src="<?php echo e(asset('argon')); ?>/img/icons/common/google.svg"></span> <span class="btn-inner--text"><?php echo e(__('Google')); ?></span> </a> </div> </div> <div class="card-body px-lg-5 py-lg-5"> <div class="text-center text-muted mb-4"> <small><?php echo e(__('Or sign up with credentials')); ?></small> </div> <form role="form" method="POST" action="<?php echo e(route('register')); ?>"> <?php echo csrf_field(); ?>
<div class="form-group<?php echo e($errors->has('name') ? ' has-danger' : ''); ?>"> <div class="input-group input-group-alternative mb-3"> <div class="input-group-prepend"> <span class="input-group-text"><i class="ni ni-hat-3"></i></span> </div> <input class="form-control<?php echo e($errors->has('name') ? ' is-invalid' : ''); ?>" placeholder="<?php echo e(__('Name')); ?>" type="text" name="name" value="<?php echo e(old('name')); ?>" required autofocus> </div> <?php if($errors->has('name')): ?> <span class="invalid-feedback" style="display: block;" role="alert"> <strong><?php echo e($errors->first('name')); ?></strong> </span> <?php endif; ?> </div> <div class="form-group<?php echo e($errors->has('email') ? ' has-danger' : ''); ?>"> <div class="input-group input-group-alternative mb-3"> <div class="input-group-prepend"> <span class="input-group-text"><i class="ni ni-email-83"></i></span> </div> <input class="form-control<?php echo e($errors->has('email') ? ' is-invalid' : ''); ?>" placeholder="<?php echo e(__('Email')); ?>" type="email" name="email" value="<?php echo e(old('email')); ?>" required> </div> <?php if($errors->has('email')): ?> <span class="invalid-feedback" style="display: block;" role="alert"> <strong><?php echo e($errors->first('email')); ?></strong> </span> <?php endif; ?> </div> <div class="form-group<?php echo e($errors->has('password') ? ' has-danger' : ''); ?>"> <div class="input-group input-group-alternative"> <div class="input-group-prepend"> <span class="input-group-text"><i class="ni ni-lock-circle-open"></i></span> </div> <input class="form-control<?php echo e($errors->has('password') ? ' is-invalid' : ''); ?>" placeholder="<?php echo e(__('Password')); ?>" type="password" name="password" required> </div> <?php if($errors->has('password')): ?> <span class="invalid-feedback" style="display: block;" role="alert"> <strong><?php echo e($errors->first('password')); ?></strong> </span> <?php endif; ?> </div> <div class="form-group"> <div class="input-group input-group-alternative"> <div class="input-group-prepend"> <span class="input-group-text"><i class="ni ni-lock-circle-open"></i></span> </div> <input class="form-control" placeholder="<?php echo e(__('Confirm Password')); ?>" type="password" name="password_confirmation" required> </div> </div> <div class="text-muted font-italic"> <small><?php echo e(__('password strength')); ?>: <span class="text-success font-weight-700"><?php echo e(__('strong')); ?>strong</span></small> </div> <div class="row my-4"> <div class="col-12"> <div class="custom-control custom-control-alternative custom-checkbox"> <input class="custom-control-input" id="customCheckRegister" type="checkbox"> <label class="custom-control-label" for="customCheckRegister"> <span class="text-muted"><?php echo e(__('I agree with the')); ?> <a href="#!"><?php echo e(__('Privacy Policy')); ?></a></span> </label> </div> </div> </div> <div class="text-center"> <button type="submit" class="btn btn-primary mt-4"><?php echo e(__('Create account')); ?></button> </div> </form> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.app', ['class' => 'bg-default'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH D:\office\laravel\example-app\resources\views/auth/register.blade.php ENDPATH**/ ?>
|