@extends('frontend.layouts.app') @section('title', app_name() . ' | ' . __('labels.frontend.contact.box_title')) @section('content') {{ html()->form('POST', route('frontend.contact.send'))->open() }}
Contact Us
{{ html()->label(__('validation.attributes.frontend.name'))->for('name') }} {{ html()->text('name') ->class('form-control required') ->placeholder(__('validation.attributes.frontend.name')) ->attribute('maxlength', 191) ->required()}}
{{ html()->label(__('validation.attributes.frontend.email'))->for('email') }} {{ html()->email('email') ->class('form-control required') ->placeholder(__('validation.attributes.frontend.email')) ->attribute('maxlength', 191) ->required() }}
{{ html()->label(__('validation.attributes.frontend.institution'))->for('institution') }} {{ html()->text('institution') ->class('form-control') ->placeholder(__('validation.attributes.frontend.institution')) ->attribute('maxlength', 191) }}
{{ html()->label(__('validation.attributes.frontend.position'))->for('position') }} {{ html()->text('position') ->class('form-control') ->placeholder(__('validation.attributes.frontend.position')) ->attribute('maxlength', 191) }}
{{ html()->label(__('validation.attributes.frontend.message'))->for('message') }} {{ html()->textarea('message') ->class('form-control') ->placeholder(__('validation.attributes.frontend.message')) }}
{{ form_submit(__('labels.frontend.contact.button'),'btn btn-block btn-success') }}
{{ html()->form()->close() }}
@endsection @push('after-scripts') @if(config('access.captcha.contact')) @captcha @endif @endpush