Я сделал это с помощью функции ниже в template.php
function mytheme_theme() {
return array(
'nsa_create_form' => array(
'arguments' => array('form' => NULL),
'template' => 'nsa-create',
),
);
}
И добавил nsa-create.tpl.php с приведенными ниже строками кода
<?php if ($show_messages && $messages): print $messages; endif; ?>
<?= drupal_render($form['start_date']) ?>
<?= drupal_render($form['end_date']) ?>
<?= drupal_render($form['confirm_dates']) ?>
<?= drupal_render($form['name']) ?>
<?= drupal_render($form['emp_id']) ?>
<?= drupal_render($form['client']) ?>
<?= drupal_render($form['designation']) ?>
<?= drupal_render($form['manager']) ?>
<?= drupal_render($form['competency']) ?>
<?= drupal_render($form['wrapper_nsa']) ?>
<?= drupal_render($form['submit']) ?>
.Сообщения об ошибках / проверках не отображаются, а красная рамка для недопустимых полей отсутствует.