@user_array is nil. Make sure it's set with an array of users to avoid this error message.
Alternatively, set @user_array to [] (an empty array) if you wish to show no options in the `select, e.g.:
collection_select @user, :full_name, @user_array || [], :id,
{ prompt: 'true' }, { class: 'select' }