@if($logged_in_user->isTempPass())
For security reasons, please change your temporary password before proceeding.
@endif
@if(!$logged_in_user->isTempPass())
{{ html()->label('Current Password')->for('old_password') }}
{{ html()->password('old_password')
->class('form-control')
->placeholder('Current Password')
->autofocus()
->required()
}}
@endif
{{ html()->label('New Password')->for('password') }}
{{ html()->password('password')
->class('form-control')
->placeholder('New Password')
->required()
}}
{{ html()->label('New Password Again')->for('password_confirmation') }}
{{ html()->password('password_confirmation')
->class('form-control')
->placeholder('New Password Again')
->required()
}}
{{ form_submit(__('labels.general.buttons.update') . ' ' . __('validation.attributes.frontend.password')) }}