Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/ledger.corals.io/storage/framework/views/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/ledger.corals.io/storage/framework/views/0b56beb2c9c8df89bec9faba54be22cfe084dfbc.php
<?php $__env->startSection('title',trans('corals-elite-admin::labels.auth.login')); ?>

<?php $__env->startSection('content'); ?>
    <div class="row">
        <div class="col-md-12">
            <h4 class="text-center m-b-20"><?php echo app('translator')->get('corals-elite-admin::labels.auth.sign_in_start_session'); ?></h4>
            <?php \Actions::do_action('pre_login_form') ?>
        </div>
    </div>
    <div class="row">
        <div class="col-md-12">
            <form method="POST" action="<?php echo e(route('login')); ?>" id="login-form">
                <?php echo e(csrf_field()); ?>

                <div class="form-group text-center">
                    <?php if(session('confirmation_user_id')): ?>
                        <a href="<?php echo e(route('auth.resend_confirmation')); ?>"><?php echo app('translator')->get('User::labels.confirmation.resend_email'); ?></a>
                    <?php endif; ?>
                </div>
                <div class="form-group <?php echo e($errors->has('email') ? ' has-danger' : ''); ?>">
                    <div class="col-xs-12">
                        <label><?php echo app('translator')->get('User::attributes.user.email'); ?></label>
                        <input type="email" name="email" id="email"
                               class="form-control" placeholder="<?php echo app('translator')->get('User::attributes.user.email'); ?>"
                               value="<?php echo e(old('email')); ?>" autofocus/>

                        <?php if($errors->has('email')): ?>
                            <small class="form-control-feedback"><?php echo e($errors->first('email')); ?></small>
                        <?php endif; ?>
                    </div>
                </div>

                <div class="form-group <?php echo e($errors->has('password') ? ' has-danger' : ''); ?>">
                    <div class="col-xs-12">
                        <label><?php echo app('translator')->get('User::attributes.user.password'); ?></label>
                        <input type="password" name="password" id="password"
                               class="form-control" placeholder="<?php echo app('translator')->get('User::attributes.user.password'); ?>"
                               value="<?php echo e(old('password')); ?>"/>
                        <?php if($errors->has('password')): ?>
                            <small class="form-control-feedback"><?php echo e($errors->first('password')); ?></small>
                        <?php endif; ?>
                    </div>
                </div>
                <div class="form-group row">
                    <div class="col-md-12">
                        <div class="d-flex no-block align-items-center">
                            <div class="custom-control custom-checkbox">
                                <input type="checkbox"
                                       name="remember"
                                       <?php echo e(old('remember') ? 'checked' : ''); ?> class="custom-control-input"
                                       id="customRemember"/>
                                <label class="custom-control-label"
                                       for="customRemember"><?php echo app('translator')->get('corals-elite-admin::labels.auth.remember_me'); ?></label>
                            </div>
                            <div class="ml-auto">
                                <a href="<?php echo e(route('password.request')); ?>" id="to-recover" class="text-muted"><i
                                            class="fa fa-unlock m-r-5"></i> <?php echo app('translator')->get('corals-elite-admin::labels.auth.forget_password'); ?>
                                </a>
                            </div>
                        </div>
                    </div>
                </div>
                <div class="form-group text-center">
                    <div class="col-xs-12 p-b-20">
                        <button class="btn btn-block btn-info btn-rounded"
                                type="submit"><?php echo app('translator')->get('corals-elite-admin::labels.auth.login'); ?></button>
                    </div>
                </div>
                <div class="row">
                    <div class="col-xs-12 col-sm-12 col-md-12 m-t-10 text-center">
                        <div class="social">
                            <?php if(config('services.facebook.client_id')): ?>
                                <a class="btn btn-facebook" data-toggle="tooltip"
                                   title="<?php echo app('translator')->get('corals-elite-admin::labels.auth.sign_in_facebook'); ?>"
                                   href="<?php echo e(route('auth.social', 'facebook')); ?>">
                                    <i class="fa fa-facebook"></i>
                                </a>
                            <?php endif; ?>
                            <?php if(config('services.twitter.client_id')): ?>
                                <a class="btn btn-twitter" data-toggle="tooltip"
                                   href="<?php echo e(route('auth.social', 'twitter')); ?>"
                                   title="<?php echo app('translator')->get('corals-elite-admin::labels.auth.sign_in_twitter'); ?>">
                                    <i class="fa fa-twitter"></i>
                                </a>
                            <?php endif; ?>
                            <?php if(config('services.google.client_id')): ?>
                                <a class="btn btn-googleplus" data-toggle="tooltip"
                                   href="<?php echo e(route('auth.social', 'google')); ?>"
                                   title="<?php echo app('translator')->get('corals-elite-admin::labels.auth.sign_in_google'); ?>">
                                    <i class="fa fa-google"></i>
                                </a>
                            <?php endif; ?>
                            <?php if(config('services.github.client_id')): ?>
                                <a class="btn btn-github" data-toggle="tooltip"
                                   href="<?php echo e(route('auth.social', 'github')); ?>"
                                   title="<?php echo app('translator')->get('corals-elite-admin::labels.auth.sign_in_github'); ?>">
                                    <i class="fa fa-github"></i>
                                </a>
                            <?php endif; ?>
                        </div>
                    </div>
                </div>
                <div class="form-group m-b-0">
                    <div class="col-sm-12 text-center">
                        <a href="<?php echo e(route('register')); ?>"
                           class="text-info m-l-5"><b><?php echo app('translator')->get('corals-elite-admin::labels.auth.register_new_account'); ?></b></a>
                    </div>
                </div>
            </form>
        </div>
    </div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.auth', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/corals/ledger.corals.io/resources/themes/elite-admin/auth/login.blade.php ENDPATH**/ ?>

Spamworldpro Mini