@extends("app") @section('head_title', getcong('contact_us_title').' | '.getcong('site_name') ) @section('head_url', Request::url()) @section('canonical_url', config('app.url').'contact-us') @section("content") {!! NoCaptcha::renderJs() !!} {{getcong('contact_us_title')}} Home {{getcong('contact_us_title')}} {{getcong('contact_us_email')}} {{getcong('contact_us_phone')}} {{getcong('contact_us_address')}} @if(Session::has('flash_message_contact')) {{ Session::get('flash_message_contact') }} @endif {!! Form::open(array('url' => 'contact-us','class'=>'','id'=>'contactform','role'=>'form')) !!} @if ($errors->has('name')) {{ $errors->first('name') }} @endif @if ($errors->has('email')) {{ $errors->first('email') }} @endif {{ old('your_message') }} @if ($errors->has('your_message')) {{ $errors->first('your_message') }} @endif {!! app('captcha')->display() !!} @if ($errors->has('g-recaptcha-response')) {{ $errors->first('g-recaptcha-response') }} @endif Submit {!! Form::close() !!} @endsection