{% set binds = "" %}
{% if data is not null %}

    {% for key, bind in data %}
        {% set binds = binds ~ ' data-' ~ key ~ '=' ~ bind  %}
    {% endfor %}

{% endif %}
<div class="{{ class }}">
    <label>{{ label }}</label>
    <input type="{{ type }}" name="{{ idName }}" id="{{ idName }}" placeholder="{{ label }}" value="{{ value }}" {{ binds }} class="form-control" readonly  >
</div>