I am trying to add a select dropdown (That shows Product title, image and price) form field inside a contact form that enable user to select product and selected products show under the field. I am using this code but it only display 50 product and just showing product titles and product image path, not the actual image.
<label for="ContactFormProductNameField">Products</label>
<select id="ContactFormProductNameField" name="contact[Product]" required>
<option selected disabled>Choose your product</option>
<option value="Others - No product-related concerns">Others - No product-related concerns</option>
{% for product in collections['all'].products %}
<option value="{{ product.title }}">{{ product.title}}{{ product.featured_image}}</option>
{% endfor %}
</select>