@php $photo = $property->photo @endphp
@if($photo)
{{ translate('ref') }} : {{ $property->ref }}
{{ $property->getAttr('property_title') }}
@endif
{{ Form::open(['route' => ['property.share', $property], 'class' => 'property-share-form']) }}
@if(config('services.google.reCAPTCHA_pk'))
{{ Form::hidden('recaptcha_response') }}
@endif
{{ Form::email('name', null, ['class' => 'form-control', 'placeholder' => translate('votre_nom').' *']) }}
{{ Form::email('email', null, ['class' => 'form-control', 'placeholder' => translate('email_contact').' *']) }}
{{ Form::textarea('message', null, ['class' => 'form-control', 'rows' => 5, 'placeholder' => translate('commentaire')]) }}
{{ Form::close() }}