10-10-2018, 06:15 PM
if(isset($user) && $user->isLoggedIn()){
You need to close your php tags before switching back to html
so
if(isset($user) && $user->isLoggedIn()){ ?>
<div class = "row">
Other html here
<?php } //closing if statement ?>
You need to close your php tags before switching back to html
so
if(isset($user) && $user->isLoggedIn()){ ?>
<div class = "row">
Other html here
<?php } //closing if statement ?>