@extends('layouts.web') @section('css') @endsection @section('content') @component('web.components.default.section', [ 'class' => 'contact', ]) @include('web.components.layout.page_title', ['title' => 'Contato'])
@component('web.components.default.form.form', [ 'class' => 'contact__form', 'action' => route('web.contact.store'), 'id' => 'contact', 'button' => [ 'clean' => true, ], ])

Contato

@include('web.components.default.form.input', [ 'name' => 'name', 'label' => 'Nome*', ])
@include('web.components.default.form.input', [ 'type' => 'email', 'name' => 'email', 'label' => 'E-mail*', ])
@include('web.components.default.form.input', [ 'name' => 'formatted', 'id' => 'formatted', 'label' => 'Telefone*', ])
@include('web.components.default.form.textarea', [ 'name' => 'message', 'label' => 'Mensagem', ]) @endcomponent
@include('web.components.pages.contact.menu') @endcomponent @endsection