관리-도구
편집 파일: fc3e3dd5e56445eb807def6a1f9f51afc3bdcd89.php
<style> :root{ --primary-color:#1c1c1c !important; } </style> <?php $__env->startSection('content'); ?> <!-- Breadcrumbs --> <div class="breadcrumbs d-none"> <div class="container"> <div class="row"> <div class="col-12"> <div class="bread-inner"> <ul class="bread-list"> <li><a href="<?php echo e(url('')); ?>"><?php echo e(_lang('Home')); ?><i class="ti-arrow-right"></i></a></li> <li class="active"><a href=""><?php echo e(_lang('Sign In')); ?></a></li> </ul> </div> </div> </div> </div> </div> <!-- End Breadcrumbs --> <!-- Login Screen --> <section id="auth" class="pt-5 mt-5"> <div class="container"> <div class="row"> <div class="col-lg-6 offset-3"> <?php if(\Session::has('success')): ?> <div class="alert alert-success mt-4"> <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a> <span><?php echo xss_clean(session('success')); ?></span> </div> <?php endif; ?> <?php if(\Session::has('error')): ?> <div class="alert alert-danger mt-4"> <a href="#" class="close" data-dismiss="alert" aria-label="close">×</a> <span><?php echo xss_clean(session('error')); ?></span> </div> <?php endif; ?> <div class="login_register"> <h3 class="section-heading"><?php echo e(_lang('Sign Up')); ?></h3> <form action="<?php echo e(url('/sign_up')); ?>" method="post"> <?php echo csrf_field(); ?> <input type="text" name="name" value="<?php echo e(old('name')); ?>" class="form-control <?php echo e($errors->has('name') ? 'is-invalid' : ''); ?>" placeholder="<?php echo e(_lang('First Name')); ?>"> <?php if($errors->has('name')): ?> <div class="invalid-feedback"> <?php echo e($errors->first('name')); ?> </div> <?php endif; ?> <input id="lastname" type="text" placeholder="<?php echo e(_lang('Last Name')); ?>" class="form-control<?php echo e($errors->has('name') ? ' is-invalid' : ''); ?>" name="lastname" value="<?php echo e(old('lastname')); ?>" required autofocus> <?php if($errors->has('lastname')): ?> <div class="invalid-feedback"> <?php echo e($errors->first('lastname')); ?> </div> <?php endif; ?> <input type="email" name="email" value="<?php echo e(old('email')); ?>" class="form-control <?php echo e($errors->has('email') ? 'is-invalid' : ''); ?>" placeholder="<?php echo e(_lang('Email')); ?>"> <?php if($errors->has('email')): ?> <div class="invalid-feedback"> <?php echo e($errors->first('email')); ?> </div> <?php endif; ?> <input type="text" name="phone" value="<?php echo e(old('phone')); ?>" class="form-control <?php echo e($errors->has('phone') ? 'is-invalid' : ''); ?>" placeholder="<?php echo e(_lang('Phone')); ?>"> <?php if($errors->has('phone')): ?> <div class="invalid-feedback"> <?php echo e($errors->first('phone')); ?> </div> <?php endif; ?> <input type="password" name="password" class="form-control <?php echo e($errors->has('password') ? 'is-invalid' : ''); ?>" placeholder="<?php echo e(_lang('Password')); ?>"> <?php if($errors->has('password')): ?> <div class="invalid-feedback"> <?php echo e($errors->first('password')); ?> </div> <?php endif; ?> <input type="password" name="password_confirmation" class="form-control <?php echo e($errors->has('password_confirmation') ? 'is-invalid' : ''); ?>" placeholder="<?php echo e(_lang('Password Confrimation')); ?>"> <?php if($errors->has('password_confirmation')): ?> <div class="invalid-feedback"> <?php echo e($errors->first('password_confirmation')); ?> </div> <?php endif; ?> <button type="submit" class="btn-login"><?php echo e(_lang('Sign Up')); ?></button> <div class="text-center"> <a href="<?php echo e(url('sign_in')); ?>" class="right_link"><?php echo e(_lang('Already have an account?')); ?></a><br/> <a href="<?php echo e(url('/company_sign_up')); ?>" class="create-account-link"><?php echo e(_lang('Create A Company Account')); ?></a> </div> </form> </div> </div> </div> </div> </section> <!--/ End Login Screen --> <?php $__env->stopSection(); ?> <?php $__env->startSection('js-script'); ?> <script src="<?php echo e(asset('public/theme/default/js/cart.js?v=1.1')); ?>"></script> <?php $__env->stopSection(); ?> <?php echo $__env->make('theme.saintsaccessories.websiteEcom', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/eraas/public_html/resources/views/theme/saintsaccessories/customer/sign_up.blade.php ENDPATH**/ ?>