@extends("app") @section('head_title', getcong('contact_title').' | '.getcong('site_name') ) @section('meta_title',getcong('contact_meta_title').' | '.getcong('site_name')) @section('meta_keywords',getcong('contact_meta_keyword')) @section('meta_description',getcong('contact_meta_description')) @section('head_url', Request::url()) @section("content") {{-- --}}

Our Address

{!!getcong('contact_address')!!}
{!! Form::open(array('url' => 'contact_send','class'=>'','id'=>'contact_form','role'=>'form')) !!}
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif @if(Session::has('error_message'))
{{ Session::get('error_message') }}
@endif
{!! Form::close() !!}
@endsection