IMMREX7

aku nok ndi : /home/spdtg/www/gomygps/storage/framework/views/
File Up :
aku nok ndi : /home/spdtg/www/gomygps/storage/framework/views/8e838f61e34709ef30bb3babd77798448143254a.php

<!doctype html>
<html class="no-js " lang="en">
<head>
<meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=Edge">
    <meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
    <title>:: GOMYGPS :: LOGIN</title>
    <!-- Favicon-->
    <link rel="icon" href="favicon.ico" type="image/x-icon">
    <!-- Custom Css -->
    <link rel="stylesheet" href="<?php echo e(asset('plugins/bootstrap/css/bootstrap.min.css')); ?>">
    <link rel="stylesheet" href="<?php echo e(asset('dist/css/main.css')); ?>">
    <link rel="stylesheet" href="<?php echo e(asset('dist/css/authentication.css')); ?>">
    <link rel="stylesheet" href="<?php echo e(asset('dist/css/color_skins.css')); ?>">
</head>

<body class="theme-cyan authentication sidebar-collapse">
<!-- Navbar -->
<nav class="navbar navbar-expand-lg fixed-top navbar-transparent">
    <div class="container">        
        <div class="navbar-translate n_logo">
            <a class="navbar-brand" href="<?php echo e(url('/')); ?>" title="">GOMYGPS</a>
            
        </div>
        <div class="navbar-collapse">
            <ul class="navbar-nav">
                     
                <li class="nav-item">
                    <!--<a class="nav-link btn btn-white btn-round" href="<?php echo e(url('register')); ?>">SIGN UP</a>-->
                </li>
            </ul>
        </div>
    </div>
</nav>
<!-- End Navbar -->
<div class="page-header">
    <div class="page-header-image" style="background-image:url(dist/images/login.jpg)"></div>
    <div class="container">
        <div class="col-md-12 content-center">
            <div class="card-plain">
                <form method="POST" action="<?php echo e(route('login')); ?>"class="form">
                         <?php echo e(csrf_field()); ?>

                    <div class="header">
                        <div class="logo-container">
                            <img src="<?php echo e(asset('dist/images/account_circle.svg')); ?>" alt="">
                        </div>
                        <h5>Log in</h5>
                    </div>
                    <div class="content">                                                
                        <div class="input-group input-lg">
                            <input type="text" name="email" class="form-control<?php echo e($errors->has('email') ? ' is-invalid' : ''); ?>" placeholder="Enter Email" value="<?php echo e(old('email')); ?>" required autofocus>
                            <span class="input-group-addon">
                                <i class="zmdi zmdi-account-circle"></i>
                            </span>
                        </div>
                        <?php if($errors->has('email')): ?>
                        <label id="minmaxlength-error" class="error" for="minmaxlength">
                            <strong><?php echo e($errors->first('email')); ?></strong>
                        </label>
                        <?php endif; ?>
                        <div class="input-group input-lg">
                            <input type="password"  placeholder="Password" class="form-control<?php echo e($errors->has('password') ? ' is-invalid' : ''); ?>" name="password" required />
                            <span class="input-group-addon">
                                <i class="zmdi zmdi-lock"></i>
                            </span>
                        </div>
                        <?php if($errors->has('password')): ?>
                        <label id="minmaxlength-error" class="error" for="minmaxlength">
                               <strong><?php echo e($errors->first('password')); ?></strong>
                        </label>
                       <?php endif; ?>
                    </div>
                    <div class="footer text-center">
                        <input type="submit" class="btn btn-primary btn-round btn-lg btn-block" value="SIGN IN">
                        <h5><a href="#" class="link">Forgot Password?</a></h5>
                    </div>
                </form>
            </div>
        </div>
    </div>
    <footer class="footer">
        <div class="container">
             <nav>
<!--                <ul>
                    <li><a href="#">Contact Us</a></li>
                    <li><a href="#" target="_blank">About Us</a></li>
                    <li><a href="javascript:void(0);">FAQ</a></li>
                </ul>-->
            </nav> 
            <div class="copyright">
                &copy;
                <script>
                    document.write(new Date().getFullYear())
                </script>,
                <span>Designed by <a href="#" target="_blank">Pessford</a></span>
            </div>
        </div>
    </footer>
</div>

<!-- Jquery Core Js -->
<script src="<?php echo e(asset('dist/bundles/libscripts.bundle.js')); ?>"></script>
<script src="<?php echo e(asset('dist/bundles/vendorscripts.bundle.js')); ?>"></script> <!-- Lib Scripts Plugin Js -->

<script>
   $(".navbar-toggler").on('click',function() {
    $("html").toggleClass("nav-open");
});
//=============================================================================
$('.form-control').on("focus", function() {
    $(this).parent('.input-group').addClass("input-group-focus");
}).on("blur", function() {
    $(this).parent(".input-group").removeClass("input-group-focus");
});
</script>
</body>
</html><?php /**PATH C:\wamp64\www\gomygps\resources\views/auth/login.blade.php ENDPATH**/ ?>

Copyright © 2021 - 2025 IMMREX7