Viewing file: b48744dae932882d71ea486494b55ef5edf6eb18.php (4.77 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title','Sign up'); ?>
<?php $__env->startSection('content'); ?> <div class="container-fluid"> <div class="row"> <div class="col-md-5 col-lg-6 col-sm-5 left-image-section"> <?php if(get_settings('app_logo')): ?> <div class="logo-section"> <a href="#"> <img src="<?php echo e(asset('uploads/'.get_settings('app_logo'))); ?>" alt=""> </a> </div> <?php endif; ?> <div class="image-section"> <img src="<?php echo e(asset('images/login_image.png')); ?>" alt=""> </div> </div> <div class="col-md-6 col-lg-5 col-sm-6 mt-5 form-section"> <form action="<?php echo e(route('signup')); ?>" method="post" id="login_registration"> <?php echo csrf_field(); ?> <?php if(request()->get('plan_id')): ?> <input type="hidden" name="plan_id" value="<?php echo e(request()->get('plan_id')); ?>"> <?php endif; ?> <div class="form-group"> <span class="text-right"><?php echo app('translator')->get('auth.sign_account'); ?></span> <a href="<?php echo e(route('login')); ?>" class="btn signin-custom-btn float-right ml-3"><?php echo app('translator')->get('auth.form.button.sign_in'); ?></a> </div> <div class="form-group mt-5"> <h2><?php echo app('translator')->get('auth.registration.title'); ?></h2> <h6>Register your account</h6> </div> <div class="form-group"> <label for=""><?php echo app('translator')->get('auth.registration.form.first_name'); ?></label> <input name="first_name" type="text" value="<?php echo e(old('first_name')); ?>" class="form-control" placeholder="<?php echo app('translator')->get('auth.registration.form.first_name'); ?>"> </div> <div class="form-group"> <label for=""><?php echo app('translator')->get('auth.registration.form.last_name'); ?></label> <input name="last_name" type="text" value="<?php echo e(old('last_name')); ?>" class="form-control" placeholder="<?php echo app('translator')->get('auth.registration.form.last_name'); ?>"> </div> <div class="form-group"> <label for=""><?php echo app('translator')->get('auth.login.form.email'); ?></label> <input type="email" class="form-control" value="<?php echo e(old('email')); ?>" name="email" placeholder="<?php echo app('translator')->get('auth.login.form.email'); ?>"> </div> <div class="form-group"> <label for=""><?php echo app('translator')->get('auth.login.form.password'); ?></label> <input type="password" class="form-control" name="password" placeholder="<?php echo app('translator')->get('auth.login.form.password'); ?>"> </div> <div class="form-group"> <input type="checkbox" required> <?php echo trans('auth.terms_condition',['terms'=>'<a href="#">Terms and Condition</a>']); ?>
</div> <div class="form-group"> <?php if(get_settings('recaptcha_site_key')): ?> <button class="g-recaptcha btn login-custom-btn" data-sitekey="<?php echo e(get_settings('recaptcha_site_key')); ?>" data-callback='signupSubmit' id="signUpBtn" data-action='submit'><?php echo app('translator')->get('auth.form.button.sign_up'); ?></button> <?php else: ?> <button type="submit" class="btn login-custom-btn"><?php echo app('translator')->get('auth.form.button.sign_up'); ?></button> <?php endif; ?> </div> </form> </div> </div> </div>
<?php $__env->stopSection(); ?> <?php $__env->startSection('extra-script'); ?> <script src="https://www.google.com/recaptcha/api.js"></script> <script src="<?php echo e(asset('js/auth.js')); ?>"> </script> <?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.auth_customer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/pcolfjqt/smm.picotech.app/resources/views/auth/registration.blade.php ENDPATH**/ ?>
|