{{-- Name: auth.list.blade Author: JH2 Created: 2015-09-15 --}}

{{ trans('auth.loginTitle') }}

{{ trans('auth.loginPara') }}

{!! Form::open() !!}
{!! Form::label('username', Lang::get('auth.username'), ['class' => 'control-label']) !!} {!! Form::text('username', null, ['class' => 'form-control inp-padding', 'placeholder' => Lang::get('auth.username') ]) !!} {!! $errors->first('username', ':message') !!}
{!! Form::label('password', Lang::get('auth.password'), ['class' => 'control-label']) !!} {!! Form::password('password', ['class' => 'form-control inp-padding', 'placeholder' => Lang::get('auth.password')]) !!} {!! $errors->first('password', ':message') !!}
{{ Lang::get('auth.forgotPassword.header') }}

{!! Form::submit(Lang::get('auth.loginBtn'), ['class' => 'btn btn-primary block full-width m-b']) !!} {{ Lang::get('auth.register.link') }}
{!! Form::close() !!}
@section('footer-script') @endsection