@extends('admin.layoutLlogin') @section('content')
@if( count($errors) > 0) @foreach($errors->all() as $error) @endforeach @endif @if(Session::has('loginError')) @endif {!! Form::open(array('url' =>'admin/checkLogin', 'method'=>'post', 'class'=>'checkLogin', 'id'=>'checkLogin')) !!}
{!! Form::email('email', $email, array('class'=>'form-control', 'id'=>'email', 'placeholder'=>'Email address', 'required'=>'required')) !!}
{!! Form::submit(trans('labels.login'), array('id'=>'login', 'class'=>'btn btn-primary btn-block btn-flat' )) !!}
{!! Form::close() !!}
@endsection