<!DOCTYPE html>
<html lang="en">
<!--<![endif]-->
<!-- BEGIN HEAD -->
<head>
        <meta charset="utf-8"/>
        <title>Admin title</title>
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta content="width=device-width, initial-scale=1" name="viewport"/>
        <meta content="" name="description"/>
        <meta content="" name="author"/>
        <meta name="csrf-token" content="<?php echo csrf_token(); ?>">

        <?php echo Html::style('bootstrap-3.3.7/css/bootstrap.min.css'); ?>


                <!-- END THEME STYLES -->
        <link rel="shortcut icon" href="favicon.ico"/>

        <script type="text/javascript">
                var baseURL         =   "<?php echo url('/'); ?>";
                var adminBaseURL    =   "<?php echo url('/admin'); ?>";
        </script>

</head>
<body>

<div class="container-fluid text-center">
        <div class="row content">
                <div class="col-lg-6 col-lg-offset-3">

                        <table class="table table-bordered">
                                <thead>
                                        <tr>
                                                <td>
                                                <h2>aardeec Admin Login</h2>
                                                </td>
                                        </tr>
                                </thead>

                                <tbody>
                                <tr>
                                        <td>
                                                <div class="col-md-6 col-lg-offset-3">
                                                        <form method="POST" action="<?php echo route('login-post'); ?>" class="">
                                                                <?php echo csrf_field(); ?>

                                                                <div class="form-group">
                                                                        <label for="email">Email</label>
                                                                        <input type="email" name="email" class="form-control" id="email" placeholder="Email" value="<?php echo e(old('email')); ?>">
                                                                </div>
                                                                <div class="form-group">
                                                                        <label for="password">Password</label>
                                                                        <input type="password" name="password" class="form-control" id="password" placeholder="Password">
                                                                </div>
                                                                <div class="form-group">
                                                                        <div class="checkbox">
                                                                                <label>
                                                                                        <input type="checkbox" name="remember"> Remember
                                                                                </label>
                                                                                <button type="submit" class="btn btn-default">Login</button>
                                                                        </div>

                                                                </div>
                                                        </form>
                                                </div>

                                        </td>
                                </tr>
                                </tbody>
                        </table>

                </div>
        </div>
</div>



<?php /*<?php echo $__env->make('admin.layout.footer', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>*/ ?>
        <!-- BEGIN HEADER -->
<?php echo Html::script('jquery/jquery.min.js'); ?>

<?php echo Html::script('bootstrap-3.3.7/js/bootstrap.min.js'); ?>


</body>
<!-- END BODY -->
</html>
