{% extends 'dashboard/base.html.twig' %} {% block title %}{{ action|capitalize }} Server | TextBlast AI{% endblock %} {% block main %}
Servers / Form

{{ action == 'u' ? 'Edit Server' : 'New Server' }}

{{ form_start(serverForm, {'attr': {'class': 'space-y-8'}}) }} {% if not serverForm.vars.valid %}
Please correct the highlighted errors below.
{{ form_errors(serverForm) }}
{% endif %}
{{ form_widget(serverForm.code, {'attr': {'placeholder': 'Server 1', 'class': 'w-full bg-slate-950/50 border border-white/10 rounded-xl px-5 py-4 text-white focus:ring-2 focus:ring-emerald-500/50 outline-none transition-all placeholder:text-slate-600'}}) }}
{{ form_errors(serverForm.code) }}
{{ form_widget(serverForm.description, {'attr': {'placeholder': 'https://server1.textblast.com', 'class': 'w-full bg-slate-950/50 border border-white/10 rounded-xl px-5 py-4 text-white focus:ring-2 focus:ring-emerald-500/50 outline-none transition-all placeholder:text-slate-600'}}) }}
{{ form_errors(serverForm.description) }}
{% if action == 'u' %} {% endif %}
Discard Changes
{{ form_end(serverForm) }}
{% endblock %}