Exclude a page from showing the menu

Hello,

I am creating my own admin template as shown on the shot below, I am trying to show the menu on all pages, that works if i put the line in the layout.

I am using the freeware crewcenter as a guide on hot to set things up so the following lines are present in the layout to show the menu everywhere.

Quote

<?php require ‘app_top.php’ ?>

Only problem is that the menu based in the app_top.php is also visible in the login page.

Does anyone lnow how to exclude this from the login and registration pages?

 

 

 

Change This

\<?php require 'app\_top.php' ?\>

To This

\<?php if(Auth::LoggedIn() == true){ ?\> \<?php require 'app\_top.php' ?\> \<? } ?\>

 

Thanks mate, Works !!