{{ html()->form('PATCH', route('frontend.auth.password.update'))->class('form-horizontal')->open() }}
{{ html()->label(__('validation.attributes.frontend.old_password'))->for('old_password') }} {{ html()->password('old_password') ->class('form-control') ->placeholder(__('validation.attributes.frontend.old_password')) ->autofocus() ->required() }}
{{ html()->label(__('validation.attributes.frontend.password'))->for('password') }} {{ html()->password('password') ->class('form-control') ->placeholder(__('validation.attributes.frontend.password')) ->required() }}
{{ html()->label(__('validation.attributes.frontend.password_confirmation'))->for('password_confirmation') }} {{ html()->password('password_confirmation') ->class('form-control') ->placeholder(__('validation.attributes.frontend.password_confirmation')) ->required() }}
{{ form_submit(__('labels.general.buttons.update') . ' ' . __('validation.attributes.frontend.password')) }}
{{ html()->form()->close() }}