{% extends 'base.html.twig' %} {% block title %}{{ action == 'create' ? 'Nuevo Pais' : 'Editar Pais' }}{% endblock %} {% block body %} {# Page Header #}

{{ action == 'create' ? 'Nuevo Pais' : 'Editar Pais' }}

{{ action == 'create' ? 'Agregar un nuevo pais al catilogo' : 'Modificar informacion del pais' }}

Volver
{% set d = data ?? {} %}

Informacion del Pais

{# Cidigo ISO-3 #}
{% if errors.codigo is defined %}

{{ errors.codigo }}

{% else %}

Cidigo ISO 3166-1 alpha-3

{% endif %}
{# Cidigo ISO-2 #}

Cidigo ISO 3166-1 alpha-2

{# Nombre #}
{% if errors.nombre is defined %}

{{ errors.nombre }}

{% endif %}
{# Estado #}

Los paises inactivos no aparecerin en las listas de seleccion

{% endblock %}