@extends('salvosites.templates.main-template') @section('page_title') Contact Us @stop @section('breadcrumb') Contact Us @stop @section('content')

Contact Info

@if(!is_null($contact))

{{ $contact->firstname }} {{ $contact->lastname }}

@if($contact->contact_type == "business" && $contact->business_name)

Business name {{ $contact->business_name }}

@endif @if($contact->contact_type != "private")
{{ ucfirst($contact->contact_type) }} address: {{ $address }}
@if($contact->zip)
Postcode: {{ $contact->zip }}
@endif @endif
Email: {{ $user->email }}
@if($contact->phone)
Phone: {{ $contact->phone }}
@endif @if($contact->mobile)
Mobile: {{ $contact->mobile }}
@endif
@else

Contact undefined

@endif
{{-- end col-md-6 --}}

@if($salvosite->contact_text)

{!! $salvosite->contact_text !!}

@endif
@include('salvosites/_contact_form')
{{-- end row --}} @stop