{{ html()->form('PATCH', route('frontend.auth.password.expired.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'))
->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() }}
{{ html()->form()->close() }}