@extends('layouts.app') @section('content') @include('includes.header') @include('includes.inner_page_title', ['page_title'=>__('Contact Us')])
{{__('Need any help?')}}

{{__('Get in touch with us')}}

{{__('Address')}}:

{{ $siteSetting->site_street_address }}

{{__('Email Address')}}:

{{ $siteSetting->mail_to_address }}

{{__('Send us email')}}

{{__('Feel free to write')}}

{{ csrf_field() }}
{!! Form::text('full_name', null, array('id'=>'full_name', 'placeholder'=>__('Full Name'), 'required'=>'required', 'class'=>'form-control', 'autofocus'=>'autofocus')) !!} @if ($errors->has('full_name')) {{ $errors->first('full_name') }} @endif
{!! Form::text('email', null, array('id'=>'email', 'placeholder'=>__('Email'), 'class'=>'form-control', 'required'=>'required')) !!} @if ($errors->has('email')) {{ $errors->first('email') }} @endif
{!! Form::text('phone', null, array('id'=>'phone', 'class'=>'form-control', 'placeholder'=>__('Phone'))) !!} @if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
{!! Form::text('subject', null, array('id'=>'subject', 'placeholder'=>__('Subject'), 'class'=>'form-control', 'required'=>'required')) !!} @if ($errors->has('subject')) {{ $errors->first('subject') }} @endif
{!! Form::textarea('message_txt', null, array('id'=>'message_txt', 'placeholder'=>__('Message'), 'class'=>'form-control', 'required'=>'required')) !!} @if ($errors->has('message_txt')) {{ $errors->first('message_txt') }} @endif
{!! app('captcha')->display() !!} @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif
@include('includes.footer') @endsection