관리-도구
편집 파일: c5d5db74de5ea0b4b2f59cda34e6fd77d66a0075.php
<?php $__env->startSection('content'); ?> <?php $content = content('auth_section.content'); ?> <?php $__env->startPush('seo'); ?> <meta name='description' content="<?php echo e($general->seo_description); ?>"> <?php $__env->stopPush(); ?> <section class="auth-section auth-section-two"> <div class="auth-wrapper"> <div class="auth-top-part"> <a href="<?php echo e(route('home')); ?>" class="auth-logo"> <img class="img-fluid rounded sm-device-img text-align" src="<?php echo e(getFile('logo', $general->logo)); ?>" alt="logo"> </a> <p class="mb-0"><span class="me-2"><?php echo e(__('Already registered?')); ?></span> <a class="cmn-btn btn-sm" href="<?php echo e(route('user.login')); ?>"><?php echo e(__('Login')); ?></a></p> </div> <div class="auth-body-part"> <div class="auth-form-wrapper"> <h3 class="text-center mb-4 text-white"><?php echo e(__($content->data->register_title)); ?></h3> <form action="<?php echo e(route('user.register')); ?>" method="POST"> <?php echo csrf_field(); ?> <div class="row gy-4"> <div class="col-lg-12"> <?php if(isset(request()->reffer)): ?> <label><?php echo e(__('Referred By')); ?></label> <input type="text" class="form-control" value="<?php echo e(request()->reffer); ?>" name="reffered_by" placeholder="<?php echo e(__('Referred By')); ?>" readonly> <?php endif; ?> </div> <div class="col-md-6"> <label><?php echo e(__('First Name')); ?></label> <input type="text" class="form-control" name="fname" value="<?php echo e(old('fname')); ?>" id="first_name" placeholder="<?php echo e(__('First Name')); ?>"> </div> <div class="col-md-6"> <label><?php echo e(__('Last Name')); ?></label> <input type="text" class="form-control" name="lname" value="<?php echo e(old('lname')); ?>" id="last_name" placeholder="<?php echo e(__('Last name')); ?>"> </div> <div class="col-md-6"> <label><?php echo e(__('Username')); ?></label> <input type="text" class="form-control" name="username" value="<?php echo e(old('username')); ?>" id="username" placeholder="<?php echo e(__('User Name')); ?>"> </div> <div class="col-md-6"> <label><?php echo e(__('Phone')); ?></label> <input type="text" class="form-control" name="phone" value="<?php echo e(old('phone')); ?>" id="phone" placeholder="<?php echo e(__('phone')); ?>"> </div> <div class="col-md-12"> <label><?php echo e(__('Email')); ?></label> <input type="Email" class="form-control" name="email" value="<?php echo e(old('email')); ?>" id="email" placeholder="<?php echo e(__('Email')); ?>"> </div> <div class="col-md-6"> <label><?php echo e(__('Pasword')); ?></label> <input type="password" class="form-control" name="password" id="password" placeholder="<?php echo e(__('Password')); ?>"> </div> <div class="col-md-6"> <label> <?php echo e(__('Confirm Pasword')); ?></label> <input type="password" class="form-control" name="password_confirmation" id="password_confirmation" placeholder="<?php echo e(__('Confirm Password')); ?>"> </div> <div class="col-md-6"> <?php if($general->allow_recaptcha == 1): ?> <script src="https://www.google.com/recaptcha/api.js"></script> <div class="g-recaptcha" data-sitekey="<?php echo e($general->recaptcha_key); ?>" data-callback="verifyCaptcha"></div> <div id="g-recaptcha-error"></div> <?php endif; ?> </div> <div class="col-lg-12"> <button class="cmn-btn w-100" type="submit"> <?php echo e(__('Register')); ?> </button> </div> </div> </form> <div class="divider-or my-4"> <span><?php echo e(__('or')); ?></span> </div> <div class="d-flex flex-wrap gap-3"> <?php if($general->google_status): ?> <a href="<?php echo e(route('user.google')); ?>" class="cmn-btn-outline-white btn-md flex-grow-1"> <i class="fab fa-facebook-f"></i> <span class="ms-1"><?php echo e(__('Google')); ?></span> </a> <?php endif; ?> <?php if($general->facebook_status): ?> <a href="<?php echo e(route('user.facebook')); ?>" class="cmn-btn-outline-white btn-md flex-grow-1"> <i class="fab fa-google"></i> <span class="ms-1"><?php echo e(__('Facebook')); ?></span> </a> <?php endif; ?> </div> </div> </div> <div class="auth-footer-part"> <p class="text-center mb-0"> <?php if($general->copyright): ?> <?php echo e(__($general->copyright)); ?> <?php endif; ?> </p> </div> </div> <div class="auth-thumb-area" style="background-image: url('<?php echo e(getFile('frontendlogin', $general->frontend_login_image)); ?>')"></div> </section> <?php $__env->stopSection(); ?> <?php $__env->startPush('script'); ?> <script> $(function() { "use strict"; function submitUserForm() { var response = grecaptcha.getResponse(); if (response.length == 0) { document.getElementById('g-recaptcha-error').innerHTML = "<span class='text-danger'><?php echo e(__('Captcha field is required.')); ?></span>"; return false; } return true; } function verifyCaptcha() { document.getElementById('g-recaptcha-error').innerHTML = ''; } }); </script> <?php $__env->stopPush(); ?> <?php echo $__env->make('frontend.layout.auth', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/inprosysltd/public_html/cityscape.inprosysltd.com/core/resources/views/frontend/user/auth/register.blade.php ENDPATH**/ ?>