@include('auth.partials._errors')
{!! Form::open(['route'=>'auth.login']) !!}
{!! Form::email('email', null, ['class'=>'form-control', 'placeholder'=> trans('auth.email')]) !!}
{!! Form::password('password', ['class'=>'form-control', 'placeholder'=> trans('auth.password')]) !!}
{!! link_to_route('auth.reset-request', trans('auth.forgot_password'),[],['class'=>'pull-right']) !!}
{!! Form::submit(trans('auth.login'), ['class'=>'btn btn-success btn-block']) !!}
{!! link_to_route('auth.register', trans('auth.need_account'),[],['class'=>'btn btn-info btn-block']) !!}
{!! Form::close() !!}