Update RegisterController.php (#1358)

Only active fields should be passed to view during registration.

Co-authored-by: Nabeel S <nabeelio@users.noreply.github.com>
This commit is contained in:
B.Fatih KOZ 2021-11-30 22:40:18 +03:00 committed by GitHub
parent 52e716d6ee
commit 4d21ca0982
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,7 +62,7 @@ class RegisterController extends Controller
{
$airports = $this->airportRepo->selectBoxList(false, setting('pilots.home_hubs_only'));
$airlines = $this->airlineRepo->selectBoxList();
$userFields = UserField::where(['show_on_registration' => true])->get();
$userFields = UserField::where(['show_on_registration' => true, 'active' => true])->get();
return view('auth.register', [
'airports' => $airports,