Viewing file: 9b1e0b95db575ee008960f9af6c5b33a.php (5.23 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('content'); ?>
<!--==== START CONTENT ====-->
<section class="my-5" >
<div class="row row2 login-box">
<div class="col-md-4 col-xl-4 col-sm-12 ">
<div class="login-form">
<div class="heading-xs my-2 text-center"><?php echo e(__('registration')['register_now']); ?></div>
<form name="my-3" method="post" action="<?php echo e(route('customer.register')); ?>">
<?php echo csrf_field(); ?>
<?php if(\Session::has('registererror')): ?>
<div class="alert bg-danger">
<ul>
<li>
<span class="text-white"> <?php echo \Session::get('registererror'); ?></span>
</li>
</ul>
</div>
<?php endif; ?>
<?php echo csrf_field(); ?>
<div class="form-group">
<label for="firstName"> <?php echo e(__('commoninput')['placeholder_first_name']); ?> <span class="text-danger"> * </span> </label>
<input type="text" class="form-control" id="firstName" name="firstName" placeholder="<?php echo e(__('commoninput')['your']); ?> <?php echo e(__('commoninput')['placeholder_first_name']); ?>..." value="<?php echo e(old('firstName')); ?>">
<?php echo $errors->first("firstName", "<span class='text-danger'>:message</span>"); ?>
</div>
<div class="form-group">
<label for="lastName"> <?php echo e(__('commoninput')['placeholder_last_name']); ?> <span class="text-danger"> * </span> </label>
<input type="text" class="form-control" id="lastName" name="lastName" placeholder="<?php echo e(__('commoninput')['your']); ?> <?php echo e(__('commoninput')['placeholder_last_name']); ?>...">
<?php echo $errors->first("lastName", "<span class='text-danger'>:message</span>"); ?>
</div>
<div class="form-group">
<label for="email"> <?php echo e(__('commoninput')['email']); ?> <span class="text-danger"> * </span> </label>
<input type="email" class="form-control" id="signupemail" name="signupemail" placeholder="<?php echo e(__('commoninput')['placeholder_email']); ?>...">
<?php echo $errors->first("signupemail", "<span class='text-danger'>:message</span>"); ?>
</div>
<div class="form-group">
<label for="telephone"> <?php echo e(__('commoninput')['placeholder_phone']); ?> <span class="text-danger"> * </span> </label>
<input type="text" class="form-control" id="telephone" name="telephone" placeholder="<?php echo e(__('commoninput')['your']); ?> <?php echo e(__('commoninput')['placeholder_phone']); ?>...">
<?php echo $errors->first("telephone", "<span class='text-danger'>:message</span>"); ?>
</div>
<div class="form-group">
<label for="password"> <?php echo e(__('commoninput')['placeholder_password']); ?> <span class="text-danger"> * </span> </label>
<input type="password" class="form-control" id="signuppassword" name="signuppassword" placeholder="<?php echo e(__('commoninput')['your']); ?> <?php echo e(__('commoninput')['placeholder_password']); ?>...">
<?php echo $errors->first("signuppassword", "<span class='text-danger'>:message</span>"); ?>
</div>
<div class="form-group">
<label for="comfirmPassword"> <?php echo e(__('commoninput')['placeholder_confirm_password']); ?> <span class="text-danger"> * </span> </label>
<input type="password" class="form-control" id="comfirmPassword" name="comfirmPassword" placeholder="<?php echo e(__('commoninput')['your']); ?> <?php echo e(__('commoninput')['placeholder_confirm_password']); ?>...">
<?php echo $errors->first("comfirmPassword", "<span class='text-danger'>:message</span>"); ?>
</div>
<div class="text-center">
<button type="submit" class="submitbtn btn-lg"> <?php echo e(__('login')['button_registration']); ?></button>
</div>
<div class="sing-in mt-2"><?php echo e(__('registration')['label_login_info']); ?> <a href="<?php echo e(route('customer.getlogin')); ?>" class="sing-in "> <?php echo e(__('registration')['button_login']); ?></a>.</div>
</form>
</div>
</div>
<div class="d-none d-md-block d-xl-block d-xl-block col-md-8 col-lg-8 col-xl-8 ">
<img src="<?php echo e(asset('frontend')); ?>/images/login-bg.png" alt="" style="height:100%">
</div>
</div>
</section>
<!--==== END CONTENT ====-->
<style media="screen">
.row2 {
--bs-gutter-x: 0rem;
}
</style>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('frontend.layouts.app', ['class' => 'bg-purple'], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/ecom1.picotech.app/public_html/resources/views/frontend/user/register.blade.php ENDPATH**/ ?>
|