images

{{ __('auth.reset_password') }}

@csrf
{{ html()->label(__('message.email') . ' *', 'email')->class('form-control-label') }} {{ html()->email('email', old('email') ?? $request->email)->placeholder(__('message.email'))->class('form-control')->required()->autofocus() }}
{{ html()->label(__('message.password') . ' *', 'password')->class('form-control-label') }} {{ html()->password('password')->class('form-control')->placeholder(__('message.password'))->required() }}
{{ html()->label(__('auth.password_confirmation') . ' *', 'password_confirmation')->class('form-control-label') }} {{ html()->password('password_confirmation')->class('form-control')->placeholder(__('auth.password_confirmation'))->required() }}