@extends('layouts.front') @section('title'){{"Contact Us - ".config('app.name')}}@endsection @section('meta-tags') @endsection @section('meta-tags-og') @endsection @section('styles') @endsection @section('scripts') @if(config('googlemap.api_key') && config('googlemap.location_name')) @endif @endsection @section('content')

@lang('Contact Us')

Get in touch with us

@if(session()->has('message_sent')) @endif @if(session()->has('message_not_sent')) @endif @include('includes.form_errors') {!! Form::open(['method'=>'post', 'action'=>'FrontContactFormController@sendEmail', 'onsubmit'=>'submit_button.disabled = true; submit_button.value = "' . __('Please Wait...') . '"; return true;']) !!}
{!! Form::label('name', __('Your Name:')) !!} {!! Form::text('name', Auth::check() ? Auth::user()->name : null, ['class'=>'form-control', 'placeholder'=>__('Enter your name'), 'required']) !!}
{!! Form::label('email', __('Your Email:')) !!} {!! Form::email('email', Auth::check() ? Auth::user()->email : null, ['class'=>'form-control', 'placeholder'=>__('Enter your email address'), 'required']) !!}
{!! Form::label('message',__('Your Message:')) !!} {!! Form::textarea('message', null, ['class'=>'form-control', 'placeholder'=>__('Enter your message'), 'rows'=>6, 'required']) !!}



{!! Form::label('security_code', __('Enter as shown in above image:')) !!}

{!! Form::submit(__('Submit'), ['class'=>'btn btn-primary btn-block', 'name'=>'submit_button']) !!}
{!! Form::close() !!}

Reach Us

{{config('app.name')}}

    @if(config('settings.address_block_address')) Admin Block
  • {{config('settings.address_block_address')}}
  • @endif @if(config('settings.registered_office')) Registered Office
  • {{config('settings.registered_office')}}
  • @endif @if(config('settings.toll_free_number'))
  • {{config('settings.toll_free_number')}}
  • @endif @if(config('settings.toll_free_number'))
  • {{config('settings.toll_free_number')}}
  • @endif
  • {{config('settings.contact_number')}}
  • {{config('settings.contact_number')}}
  • @if(config('settings.contact_email'))
  • {{config('settings.contact_email')}}
  • @endif
@if(config('googlemap.api_key') && config('googlemap.location_name'))
@elseif(config('googlemap.embed_code'))
{!! config('googlemap.embed_code') !!}
@endif
@endsection