<div id="bedroom_{{ id }}">
<input type="hidden" name="forms[bedrooms][]" value="{{ id }}">
{% include "v2/_input.html.twig" with { label: 'Bedroom Name', name: 'bedroom_'~ id ~'_name', required: true, value: 'Bedroom '~ id } %}
{% include "v2/_score.html.twig" with { label: 'Decoration', name: 'bedroom_'~ id ~'_decoration', required: true } %}
{% include "v2/_score.html.twig" with { label: 'Furniture and soft furnishings', name: 'bedroom_'~ id ~'_furniture', required: true } %}
{% include "v2/_score.html.twig" with { label: 'Flooring', name: 'bedroom_'~ id ~'_flooring', required: true } %}
{% include "v2/_score.html.twig" with { label: 'Lighting and heating', name: 'bedroom_'~ id ~'_lighting', required: true } %}
{% include "v2/_score.html.twig" with { label: 'Beds, mattresses and headboard', name: 'bedroom_'~ id ~'_beds', required: true } %}
{% include "v2/_score.html.twig" with { label: 'Bedding, bed linen and towels', name: 'bedroom_'~ id ~'_bedding', required: true } %}
{% include "v2/_yesno.html.twig" with { label: 'Curtains and blinds', name: 'bedroom_'~ id ~'_curtains' } %}
{% include "v2/_yesno.html.twig" with { label: 'Duvets/blankets/pillows', name: 'bedroom_'~ id ~'_duvets' } %}
{% include "v2/_yesno.html.twig" with { label: 'Mattress protector/pillowslips', name: 'bedroom_'~ id ~'_mattressprotector' } %}
{% include "v2/_yesno.html.twig" with { label: 'Towels provided', name: 'bedroom_'~ id ~'_towelsprovided' } %}
{% include "v2/_yesno.html.twig" with { label: 'Wardrobe/hanging space/hangers', name: 'bedroom_'~ id ~'_wardrobe' } %}
{% include "v2/_yesno.html.twig" with { label: 'Bedside tables', name: 'bedroom_'~ id ~'_bedsidetable' } %}
{% include "v2/_yesno.html.twig" with { label: 'Lamps', name: 'bedroom_'~ id ~'_lamps' } %}
{% include "v2/_yesno.html.twig" with { label: 'Waste bins', name: 'bedroom_'~ id ~'_wastebins' } %}
{% if id != 1 %}
<button class="btn btn-danger text-right btn_remove_bedroom" data-room="{{ id }}">Remove bedroom</button>
{% endif %}
</div>
<hr>