/**
  * Show the application registration form.
  *
  * @return Response
  */
 public function getRegister()
 {
     $nazioni = $this->nazione->where('inizio_validita', '<', $this->now)->where('fine_validita', '>', $this->now)->lists('nazione', 'id')->all();
     return view('auth.register', compact("nazioni"));
 }