@extends('app') @section('head_title', getcong('contact_title').' | '.getcong('site_name') ) @section('head_url', Request::url()) @section("content")
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('flash_message')) @endif

{{trans('words.contact_information')}}


{!! Form::open(array('url' => 'contact_send','class'=>'contact-form card mb-0','id'=>'contact_form','role'=>'form')) !!}

{{trans('words.get_in_touch')}}


{!! Form::close() !!}
@endsection