<?php $__env->startSection('content'); ?>
<style>
    .userlogin {
        width: 300px;
        height: 200px;
        margin: 20px auto;
    }

    .userlogin input {
        width: 300px;
        border: 1px solid;
        border-radius: 3px;
        height: 45px;
        padding-left: 5px;
        margin-bottom: 5px;
    }
</style>
<div class="new_row">
    <div class="new_row row-fixed">
        <div class="column-20">
            <img src="<?php echo e(URL::asset('images/girl2.jpg')); ?>" alt="">
        </div>
    </div>

    <div class="userlogin">
        <h3>The Ivy Key Portal Login</h3>
        <form action="<?php echo e(URL::to('/login')); ?>" method="post">
            <input type="text" name="username" placeholder="Username"><br>
            <input type="password" name="password" placeholder="Password">
            <input type="hidden" name="_token" value="<?php echo e(csrf_token()); ?>">
            <input type="submit" value="Login">
        </form>
    </div>
</div>
<script>
    $('.row-fixed-content').addClass('tutors-top-content');
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>