Make optional application-related registration parameters optional

This commit is contained in:
2020-04-29 22:18:34 +01:00
parent 11e8062500
commit 58b6f3292e
3 changed files with 4 additions and 3 deletions

View File

@@ -68,6 +68,7 @@ class RegisterController extends Controller
'name' => $data['name'],
'email' => $data['email'],
'password' => Hash::make($data['password']),
'originalIP' => request()->ip()
]);
}
}