{% extends 'baseadmin.html.twig' %} {% import "_modules/bsmacros.html.twig" as bs %} {% block title %}Edit Game - {{ parent() }}{% endblock %} {% block content %} {% include "_modules/flashbag.html.twig" %}

Edit Game

Back
{{ form_start(form) }}
{{ form_label(form.name) }} {{ form_widget(form.name, {'attr': {'class': 'form-control'}}) }} {{ form_errors(form.name) }}
{{ form_label(form.description) }} {{ form_widget(form.description, {'attr': {'class': 'form-control'}}) }} {{ form_errors(form.description) }}
This key is used for integrations with the game. Do not share this key with anyone as it will allow access to Tarin's Plugin API. If you need to roll a new key, do so from here.
{{ form_end(form) }}
{% endblock %} {% block scripts %} {{ parent() }} {% endblock %}