5.2.2 Displaying Auth Error Messages
There is no translation yet for this section. Please help out and translate this.. More information about translations
In order to display the error messages that Auth spits out you need to add the following code to your view. In this case, the message will appear below the regular flash messages:
In order to show all normal flash messages and auth flash messages for all views add the following two lines to the views/layouts/default.ctp file in the body section preferable before the content_for_layout line.
<?php
$session->flash();
$session->flash('auth');
?>
<?php$session->flash();$session->flash('auth');?>


























