Hi There,
I am very new to the world of coding and website. I want to have a page on my site where customers can request samples. I built the below and when submitting the form I only receive ‘name, email and number’ to my email address not the whole form. See below a screenshot of the form and code. Please help 
{{ page.title }}
{% if page.content.size > 0 %}
{{ page.content }}
{% endif %}
{%- assign formId = 'ContactForm' -%}
{% form 'contact', id: formId %}
{% include 'form-status', form: form, form_id: formId %}
{{ 'contact.form.name' | t }}
{{ 'contact.form.email' | t }} *
{%- if form.errors contains 'email' -%}
{{ 'general.accessibility.error' | t }}
{% include 'icon-error' %}
{{ form.errors.translated_fields['email'] | capitalize }} {{ form.errors.messages['email'] }}.
{%- endif -%}
{{ ‘contact.form.phone’ | t }}
Company Name
<input type=“text”
Street Address
<input type=“text”
City/Town
<input type=“text”
Postcode
<input type=“text”
{% endform %}
@Mogulanddram You need to add a name to the input elements and also close the tags.
this would become
```markup
each input needs a name, so copy and repeat change the name between the square brackets contact[#NAME_HERE#]
as you can see in your own code you are recieving on name in email becaseu the input elements have the names eg. contact[email]