{% extends 'pages/base.html.twig' %}
{% block title %}お問い合わせ|株式会社平塚富士キッチン{% endblock %}
{% block meta_og_title %}お問い合わせ|株式会社平塚富士キッチン{% endblock %}
{% block meta_twitter_title %}お問い合わせ|株式会社平塚富士キッチン{% endblock %}
{% block meta_description %}株式会社平塚富士キッチンのお問い合わせフォームです。必要な情報を記入し、お問い合わせフォームよりお気軽にお問い合わせください。{% endblock %}
{% block meta_og_description %}株式会社平塚富士キッチンのお問い合わせフォームです。必要な情報を記入し、お問い合わせフォームよりお気軽にお問い合わせください。{% endblock %}
{% block body %}
<div class="pg_breadcrumb-wrapper">
<div class="pg_breadcrumb">
<a class="breadcrumb-item c-breadcrumb-group-list__item--white" href="{{ path('top') }}">
TOP
</a><span class="c-breadcrumb-group-list__slash--white">/</span>
<a class="pg_breadcrumb-item" href="{{ path('contact_index')}}">
お問合わせ
</a>
</div>
</div>
{% if not retry %}
{# ページコンテンツここに #}
<main id="contact">
{% include "pages/contact/_hero.html.twig" %}
<div class="c-contact_wrap">
<div class="c-contact_intro">
<h3 class="c-contact_intro_title">お問合わせフォーム</h3>
<p class="c-contact_intro_text">下記フォームより、<br class="sp-style">お気軽にお問合わせください。</p>
</div>
{% else %}
{{ form_errors(form) }}
{% endif %}
{{ form_start(form, {
action: path('contact_confirm')
}) }}
{% include "components/form/_row.html.twig" with {
form: form.name,
attr: {
placeholder: "山田 太郎"
}
} %}
{% include "components/form/_row.html.twig" with {
form: form.kana,
attr: {
placeholder: "やまだ たろう"
}
} %}
{% include "components/form/_row.html.twig" with {
form: form.phone,
attr: {
placeholder: "000-0000-0000"
}
} %}
{% include "components/form/_row.html.twig" with {
form: form.email,
attr: {
placeholder: "xxxx@xx.jp"
}
} %}
{% include "components/form/_row.html.twig" with {
form: form.message,
attr: {
placeholder: "お問合わせ内容を入力してください。"
}
} %}
{% include "components/form/_agreement.html.twig" %}
{% include "components/_google_recaptcha.html.twig" %}
<button class="pg_contact-submit_button" type="submit">
{% include "components/common/_button.html.twig" with {
text: '送信内容を確認する',
src: 'build/images/common/arrow_white.svg',
width: '8',
height: '12',
class: 'c-black-button',
}%}
</button>
{#<button class="submit-button" type="submit">確認画面へ</button>#}
{{ form_end(form) }}
</div>
</main>
{% endblock %}