templates/company/new.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}New Company{% endblock %}
  3. {% block body %}
  4.     <h1 class="text-center text-4xl md:text-5xl lg:text-6xl font-bold text-gray-900">Register your company</h1>
  5.     {{ include('company/_form.html.twig') }}
  6.     <a href="{{ path('app_company_index') }}">back to list</a>
  7. {% endblock %}