<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
    <link rel="shortcut icon" href="#" type="<?php echo e(asset('images/favicon.ico')); ?>">
    <title><?php echo e(trans('ui.title')); ?></title>

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

    <?php echo Html::style('css/style.css'); ?>

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

</head>
<body class="login-body">

<div class="container">
    <?php echo Form::open(['method' => 'POST', 'url' => '/password/email', 'class' => 'cmxform form-signin']); ?>

        <?php if(session('status')): ?>
            <div class="alert alert-success">
                <?php echo e(session('status')); ?>

            </div>
        <?php endif; ?>
        <div class="form-signin-heading text-center">
            <h3 style="font-weight: bold; color: #7a7676">TURNOS <span class="text-muted">PRO</span></h3>
            <h4 style="font-weight: bold; color: #7a7676">Ingresa tu email</h4>
        </div>
        <div class="login-wrap">
            <div class="form-group<?php echo e($errors->has('email') ? ' has-error' : ''); ?>">
                <?php echo Form::email('email', null, ['class' => 'form-control', 'required' => 'required', 'placeholder' => 'email@ejemplo.com']); ?>

                <small class="text-danger"><?php echo e($errors->first('email')); ?></small>
            </div>
            <?php echo Form::submit('Enviar el enlace al email', ['class' => 'btn btn-primary btn-block']); ?>

            <label class="checkbox">
                <a href="<?php echo e(url('/')); ?>">Iniciar sesión</a>
            </label>
        </div>

    <?php echo Form::close(); ?>

</div>

<?php echo $__env->make('partials.script', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>
</body>
</html>
