<?php $__env->startSection('content'); ?>
<legend>使用者登入</legend>
<?php echo Form::open(); ?>

    <?php if($errors->any()): ?>
    <div class="alert alert-danger">
      <button type="button" class="close" data-dismiss="alert">&times;</button>
      <strong>錯誤!</strong> <?php echo $errors->first(); ?>

    </div>
    <?php endif; ?>
    <div class="form-group">
        <label for="inputEmail">請輸入帳號</label>
        <input name="account" class="form-control" type="text" id="inputEmail" placeholder="帳號">
    </div>
    <div class="form-group">
        <label for="inputPassword">請輸入密碼</label>
        <input name="password" class="form-control" type="password" id="inputPassword" placeholder="密碼">
    </div>
    <p><input class="btn btn-primary" type="submit" value="登入"></p>
<?php echo Form::close(); ?>

<?php $__env->stopSection(); ?>

<?php echo $__env->make('Myadmin::layout.window', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>