@section('content') @if($section = $page->getSection('slider'))
@foreach($section->images->sortBy('post.order') as $medium)
@if($medium->post->title)

{{ $medium->post->title }}

@endif @if($medium->post->content)
{!! $medium->post->content !!}
@endif @if($medium->atts->url) @endif
@endforeach
@endif @if($section = $page->getSection('somos'))

{{ $section->post->title }}

{!! $section->post->content !!}
@if($section->atts->url) @endif
@endif @if($articles->count())

Noticias

@foreach($articles as $article)

{{ $article->post->title }}

{!! nl2br($article->post->excerpt) !!}
@endforeach
@endif @if($section = $page->getSection('marcas'))

{{ $section->post->title }}

{!! $section->post->content !!}
@foreach($section->images->sortBy('post.order') as $medium) @endforeach
@endif

Contacto

{!! Form::open([ 'class' => 'ajax-form', 'route' => 'form.contact' ]) !!}
{!! Form::text('name', null, ['class' => 'form-control', 'data-required']) !!}
{!! Form::email('email', null, ['class' => 'form-control', 'data-required']) !!}
{!! Form::textarea('message', null, ['class' => 'form-control', 'data-required', 'rows' => 5]) !!}
{!! Form::close() !!}

{!! nl2br($options->address) !!}

{!! $options->map !!}
@endsection @push('scripts') @endpush