{{ html()->form('PATCH', route('frontend.auth.password.update'))->class('form-horizontal')->open() }}
Change Password
@if($logged_in_user->isTempPass()) @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')) }}
{{ html()->form()->close() }}