2016-01-14 16:41:15 +01:00
|
|
|
<tr data-count="{{ count }}">
|
|
|
|
|
<td style="width:40px;">
|
|
|
|
|
<a href="#" class="btn btn-danger btn-sm remove-action"><i class="fa fa-trash"></i></a>
|
|
|
|
|
</td>
|
|
|
|
|
<td style="width:30%;">
|
2016-01-14 18:09:20 +01:00
|
|
|
{% if errors.has('XXX') %}
|
|
|
|
|
<span class="form-control-feedback"><i class="fa fa-fw fa-remove"></i></span>
|
|
|
|
|
<p class="text-danger">{{ errors.first('xxxx') }}</p>
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
2016-01-14 16:41:15 +01:00
|
|
|
<select name="rule-action[{{ count }}]" class="form-control">
|
|
|
|
|
{% for key,name in actions %}
|
2016-01-14 18:09:20 +01:00
|
|
|
<option value="{{ key }}" label="{{ name }}">{{ name }}</option>
|
2016-01-14 16:41:15 +01:00
|
|
|
{% endfor %}
|
|
|
|
|
</select>
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<input type="text" name="rule-action-value[{{ count }}]" class="form-control">
|
|
|
|
|
</td>
|
|
|
|
|
<td style="width:20%;">
|
|
|
|
|
<div class="checkbox">
|
|
|
|
|
<label>
|
|
|
|
|
<input type="checkbox" name="rule-action-stop[{{ count }}]" value="1"/>
|
|
|
|
|
</label>
|
|
|
|
|
</div>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|