New Password
{!! (isset($pages->fldPagesDescription)) ? $pages->fldPagesDescription: '' !!} @if(Session::has('error')){!!Session::get('error')!!}
@endif
{!! Form::open(array('url' => '/new-password', 'method' => 'post', 'class' => 'row-fluid account-login input-100')) !!}
{!! Form::label('password', '* Password',array('style'=>'width:75px')); !!}
{!! Form::password('password',array('id'=>'password','required'=>'required','class'=>'form-control password-fld')) !!}
{{-- @if($errors->registration->first('password'))
at least 8 char | an uppercase | a number | special char |
{!!$errors->registration->first('password')!!}
@endif --}}
{!! Form::label('password_confirmation', '* Confirm Password',array('style'=>'width:75px')); !!}
{!! Form::password('password_confirmation',array('id'=>'password_confirmation','required','class'=>'form-control password-confirm-fld')) !!}
{{-- @if($errors->registration->first('password_confirmation'))
{!!$errors->registration->first('password_confirmation')!!}
@endif --}}
{!! Form::submit('Submit',array('name'=>'submit','class'=>'uk-button uk-button-primary'))!!}