/**
  * Get settings form
  *
  * @return mixed
  */
 public function settingsForm()
 {
     $user = $this->userService->getInfo();
     return $this->view('users.settings.form', compact('user'));
 }