public function registro($code)
 {
     $datos = Formulario::where('token', $code)->first();
     if (!$datos) {
         abort(404);
     } else {
         return view('registro', ['registro' => $datos]);
     }
 }