Guest User

Untitled

a guest
Dec 14th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. {% macro errorList(errors) %}
  2. {% if errors %}
  3. <ul class="errors">
  4. {% for error in errors %}
  5. <li>{{ error }}</li>
  6. {% endfor %}
  7. </ul>
  8. {% endif %}
  9. {% endmacro %}
  10.  
  11. {% from _self import errorList %}
  12.  
  13.  
  14. <div class="form-group">
  15. <label>Featured Image</label>
  16. <div class="input-group">
  17. <div class="custom-file">
  18. <input id="inputGroupFile01" type="file" class="custom-file-input" name="fields[networkImage]">
  19. <label class="custom-file-label" for="inputGroupFile01">Choose file</label>
  20. </div>
  21. </div>
  22. </div>
Add Comment
Please, Sign In to add comment