From 2c6033d09abdee11aeacf10e09ff08a2804320b1 Mon Sep 17 00:00:00 2001 From: Eugeny Galkovskiy Date: Thu, 9 Nov 2017 11:44:54 +0200 Subject: [PATCH] forms translations --- frontend/views/layouts/main.php | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/frontend/views/layouts/main.php b/frontend/views/layouts/main.php index c3f95ee..1a349cb 100755 --- a/frontend/views/layouts/main.php +++ b/frontend/views/layouts/main.php @@ -445,20 +445,24 @@ _________________________________________________________ --> ); ?> field($feedback, 'name') - ->textInput(); ?> + ->textInput() + ->Label('Имя'); ?> field($feedback, 'email') - ->textInput(); ?> + ->textInput() + ->Label('Email'); ?> field($feedback, 'phone') - ->textInput(); ?> + ->textInput() + ->Label('Номер телефона'); ?> field($feedback, 'message') ->textarea( [ 'rows' => 4, ] - ); ?> + ) + ->Label('Сообщение'); ?>