Hello, I'm trying to extract the data from the form and then insert it, but it sends me this error: Uncaught TypeError: Can not read property 'value' of undefined

Template.Formulario.events({
‘click .Addinfo’(event){

event.preventDefault();
//atrapamos la informacion del Formulario
const target=event.target;
const tipo_lente=event.Tlente.value;
const tipo_mica=event.Tmica;
const esfera=event.Esfera.value;
const data=event.Fecha.value;
const rango_cilindro1=event.Cilindro1.value;
const rango_cilindro2=event.Cilindro2.value;
const precio=event.Precio.value;

Tprecio.insert({
  "rango": [{
    tipo_lente: [{
          tipo_mica: [{
              esfera:[{
                  "fecha":date,
                  "usuario":"prueba",
                  "cilindro": [{
                      "rango1":cilindro1,
                      "rango2":cilindro2
                  }],
                  "precio":precio
              }]
          }]
      }]
  }]

,createdAt: new Date ()},)
},
});