/var/www/vhosts/nabawater/frontend/views/home
Edit: /var/www/vhosts/nabawater/frontend/views/home/contact.php (6568B)
= Yii::t('frontend','Get In Touch') ?>
= Yii::t('frontend','Naba is located in a very unique area, near the vision 2030 big projects the red sea, Alula, the line, and NEOM. The company is near the borders of Egypt, Jordan, and Iraq.') ?>
= Yii::t('frontend','Visit Us:') ?>
= Configuration::get(Configuration::APP_CONTACT_ADDRESS) ?>
= Yii::t('frontend','Mail Us:') ?>
= Configuration::get(Configuration::APP_EMAIL) ?>
= Yii::t('frontend','Phone:') ?>
= Configuration::get(Configuration::APP_CONTACT_NO) ?>
'contact']);
$contact = new Enquiry();
$contact->setScenario(Enquiry::ENQUIRY);
?>
= Yii::t('frontend','Drop Us a Line') ?>
=
$form->field($contact, 'first_name')
->textInput(['placeholder' => yii::t('frontend', 'First Name')])
->label(false);
?>
=
$form->field($contact, 'email')
->textInput(['placeholder' => yii::t('frontend', 'Email Address')])
->label(false);
?>
=
$form->field($contact, 'mobile_number')
->textInput(['placeholder' => yii::t('frontend', 'Mobile Number')])
->label(false);
?>
=
$form->field($contact, 'company_name')
->textInput(['placeholder' => yii::t('frontend', 'Company Name')])
->label(false);
?>
=
$form->field($contact, 'message')
->textarea(['placeholder' => yii::t('frontend', 'Message')])
->label(false);
?>
=
Html::submitButton(
yii::t('frontend', 'Submit'), [
'class' => 'btn btn-primary w-100',
]
)
?>