HEX
Server: LiteSpeed
System: Linux s1049.use1.mysecurecloudhost.com 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: xedaptot (3356)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/xedaptot/be.naniguide.com/storage/framework/views/46ee867617750408b3e540a5adcf1ae0.php
<?php $__env->startSection('title', trans('messages.password_reset')); ?>

<?php $__env->startSection('content'); ?>
    
    <!-- send reset password email -->
    <form class="" role="form" method="POST" action="<?php echo e(url('/password/reset'), false); ?>">
        <?php echo e(csrf_field(), false); ?>

        
        <input type="hidden" name="token" value="<?php echo e($token, false); ?>">
        
        <div class="panel panel-body p-4 rounded-3 bg-white shadow">                        
            
            <?php if(session('status')): ?>
                <div class="alert alert-success">
        <?php echo e(session('status'), false); ?>

                </div>
            <?php endif; ?>
            
            <h4 class="text-semibold mt-0"><?php echo e(trans('messages.password_reset'), false); ?></h4>
            
            <div class="form-group has-feedback has-feedback-left<?php echo e($errors->has('email') ? ' has-error' : '', false); ?>">
                <input id="email" type="email" class="form-control" name="email" placeholder="<?php echo e(trans("messages.email"), false); ?>" value="<?php echo e($email ?? old('email'), false); ?>">
                <div class="form-control-feedback has-label">
        <i class="icon-envelop5 text-muted"></i>
                </div>
                <?php if($errors->has('email')): ?>
        <span class="help-block">
            <strong><?php echo e($errors->first('email'), false); ?></strong>
        </span>
                <?php endif; ?>                            
            </div>
                
            <div class="form-group has-feedback has-feedback-left<?php echo e($errors->has('password') ? ' has-error' : '', false); ?>">
                <input id="password" type="password" class="form-control" name="password" placeholder="<?php echo e(trans("messages.password"), false); ?>">
                <div class="form-control-feedback">
        <i class="icon-lock2 text-muted"></i>
                </div>
                <?php if($errors->has('password')): ?>
        <span class="help-block">
            <strong><?php echo e($errors->first('password'), false); ?></strong>
        </span>
                <?php endif; ?>
            </div>
                
            <div class="form-group has-feedback has-feedback-left<?php echo e($errors->has('password_confirmation') ? ' has-error' : '', false); ?>">
                <input id="password-confirm" type="password" class="form-control" name="password_confirmation" placeholder="<?php echo e(trans("messages.confirm_password"), false); ?>">
                <div class="form-control-feedback">
        <i class="icon-lock2 text-muted"></i>
                </div>
                <?php if($errors->has('password_confirmation')): ?>
        <span class="help-block">
            <strong><?php echo e($errors->first('password_confirmation'), false); ?></strong>
        </span>
                <?php endif; ?>
            </div>
            
            <button type="submit" class="btn btn-secondary">
                <?php echo e(trans('messages.reset_password'), false); ?>  <i class="icon-circle-right2 position-right"></i>
            </button>
            <a href="<?php echo e(url("/login"), false); ?>" class="btn btn-light">
                <?php echo e(trans("messages.return_to_login"), false); ?>

            </a>
            
        </div>
    </form>
    <!-- /send reset password email -->                
    
<?php $__env->stopSection(); ?>




<?php echo $__env->make('layouts.core.login', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH /home/xedaptot/be.naniguide.com/resources/views/auth/passwords/reset.blade.php ENDPATH**/ ?>