@extends('frontend.layouts.split') @section('layout_mode', 'app') @section('title', __('labels.frontend.passwords.expired_password_box_title') . ' '.html_entity_decode("—", ENT_QUOTES, 'UTF-8').' ' . app_name()) @section('content')
@lang('labels.frontend.passwords.expired_password_box_title')
{{ 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() }}
{{ form_submit(__('labels.frontend.passwords.update_password_button')) }}
{{ html()->form()->close() }}
@endsection