Error when trying to implement a multiple_select

It’s not that easy without line numbers…

But my guess is here

&{&1.id, &1.nombre}

You are sending integer to multiple_select instead of atom or binary. Try to replace with

&{Integer.to_string(&1.id), &1.nombre}