Hello,
Im using Laravel 5.3
Id like to allow registrations just for users who are currently logged in. Its the internal application, so Id like in the future one "super user" who can create employees accounts.
make:auth allows creating account for everyone.
Thanks
I have alreary solved it by changing
public function __construct()
{
$this->middleware('guest');
}
to
public function __construct()
{
$this->middleware('auth');
}
in RegisterController.php
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community