{{-- Register - enter password and language only --}}
{{ Form::open(array('route' => 'postUpdatePassword', 'autocomplete' => 'off', 'role' => 'form', 'class' => 'form-container')) }}

{{ Lang::get('register.title_update_password') }}

{{ Lang::get('register.text_update_password') }}

{{ Form::password('password', array('id' => 'password', 'class' => 'form-control', 'required', 'autofocus')) }} @if (isset($errors) && ($errors->first('password') != '' || $errors->first('password') != null))

{{ $errors->first('password') }}

@endif
{{ Form::password('repeat_password', array('id' => 'repeat_password', 'class' => 'form-control', 'required')) }} @if (isset($errors) && ($errors->first('repeat_password') != '' || $errors->first('repeat_password') != null))

{{ $errors->first('repeat_password') }}

@endif

{{ Form::select('language', $languages, null, array('id' => 'language', 'class' => 'form-control', 'required')) }} @if (isset($errors) && ($errors->first('language') != '' || $errors->first('language') != null))

{{ $errors->first('language') }}

@endif

{{ Form::button(' ' . Lang::get('register.submit_button'), array('class' => 'btn btn-primary', 'type' => 'submit')) }}

{{ Form::close() }}