I have 3 Laravel Applications.
Laravel1
Laravel2
Laravel3
The Users register on Laravel1, and they have automatic account in Laravel2 and Laravel3 with the same email and password. This works!
But now i will create two links on Laravel1 —> for visit Laravel2 and Laravel3.
Now the user must login again in Laravel2 and Laravel3, with the same password. The user must type password again :(
What is the best approach for this problem? I can not store the password in Plain Text with session on Laravel1. This is not secure.. Also i can not send via request to Lara2 and Lara3, because it will display the plain password in browser.