After the few attempts yielding no results we dug deeper into the issue. What we found that the cookies stored within the browser sessions were not working as they were intended to.
Using Chrome:
1. Right click and Inspect Element.
2. Click the "Resources" tab
3a. Locate "cookies"
3b. Expand cookies tab
3c. Click on your Site (it should be your site URL or server name if you are on a local server)
4. Locate the cookie sessions. Usually the cookie sessions will start with "SESS". If you do not see this in your cookies you might have to truncate your session table in your site's database:
truncate table sessions;
5. Right click the SESS cookie and select delete
6. Log back in.