Commit 2c6033d09abdee11aeacf10e09ff08a2804320b1

Authored by Eugeny Galkovskiy
1 parent 97e411f6

forms translations

Showing 1 changed file with 8 additions and 4 deletions   Show diff stats
frontend/views/layouts/main.php
... ... @@ -445,20 +445,24 @@ _________________________________________________________ -->
445 445 ); ?>
446 446  
447 447 <?= $form->field($feedback, 'name')
448   - ->textInput(); ?>
  448 + ->textInput()
  449 + ->Label('Имя'); ?>
449 450  
450 451 <?= $form->field($feedback, 'email')
451   - ->textInput(); ?>
  452 + ->textInput()
  453 + ->Label('Email'); ?>
452 454  
453 455 <?= $form->field($feedback, 'phone')
454   - ->textInput(); ?>
  456 + ->textInput()
  457 + ->Label('Номер телефона'); ?>
455 458  
456 459 <?= $form->field($feedback, 'message')
457 460 ->textarea(
458 461 [
459 462 'rows' => 4,
460 463 ]
461   - ); ?>
  464 + )
  465 + ->Label('Сообщение'); ?>
462 466  
463 467 <p class="text-center">
464 468 <?= Html::submitButton(
... ...