Home
NexoPOS

RenderPasswordLostFooterEvent

RenderPasswordLostFooterEvent is dispatched from the password recovery page footer. Modules can listen to it when they need to append scripts, tracking markup, or helper UI that only belongs to password recovery.

Where It Runs

This event is implemented in resources/views/pages/auth/password-lost.blade.php. It is dispatched inside the layout.base.footer section of the password recovery screen.

Available Properties

  • $event->output: an App\\Classes\\Output instance used to append rendered footer content.

Listener Example

<?php

namespace Modules\MyModule\Listeners;

use App\Events\RenderPasswordLostFooterEvent;

class RenderPasswordLostFooterEventListener
{
    public function handle( RenderPasswordLostFooterEvent $event )
    {
        $event->output->addView( 'MyModule::auth.password-lost-footer' );
    }
}

Summary

  • Use this event for footer content required only on the password recovery page.
  • Append content through the event output object.