@extends('temas.theme-eight.layout') @section('menu-sobre') active @stop @section('titulo-pagina') @empty(!$site->informacao->nome_comercial) {{ $site->informacao->nome_comercial }} - Institucional @else Institucional @endif @endsection @section('content')

@if($conteudo->conteudos()->where('tipo','titulo_sobre')->first())
{!! $conteudo->conteudos()->where('tipo','titulo_sobre')->first()->descricao!!}
@else
SOBRE O ESCRITÓRIO
@endif

@if($conteudo->conteudos()->where('tipo','texto_sobre')->first())
{!! ($conteudo->conteudos()->where('tipo','texto_sobre')->first()->descricao) !!}
@else

Dotado de uma estrutura ágil, abrangente, com os melhores recursos humanos e tecnológicos do mercado, nosso escritório está plenamente apto a atender às demandas e aos interesses de seus clientes, com dedicação, lealdade e eficiência de resultados, razões pelas quais alcançou prestígio e respeitabilidade no mercado.

Por meio de grupos de estudos e pesquisas, o escritório atua na vanguarda perante os Tribunais do país, contribuindo com a consolidação da jurisprudência, bem como em sintonia com os principais doutrinadores das áreas nas quais atua.

A equipe possui habilidades múltiplas para oferecer as melhores soluções aos seus clientes, com uma equipe de advogados de sólida formação e comprovada experiência profissional.

@endif
@if($conteudo->conteudos() ->where('tipo','video_sobre') -> first())
{!! $conteudo->conteudos() ->where('tipo','video_sobre') -> first() ->descricao !!}
{{ csrf_field() }}
@else @if($conteudo ->conteudos() ->where('tipo','imagem_sobre') ->first())
@else {{--! Outra imagem padrão --}}
@endif @endif
{{-- banner_video --}} @if($conteudo->conteudos()->where('tipo','video_sobre')->first()) @include('temas.componentes.video.edit',[ 'conteudo' => $conteudo->conteudos()->where('tipo','video_sobre')->first(), 'label' => 'Cole o link do seu vídeo', 'id' => 'video_sobre_modal_edit', 'tipo' => 'video_sobre', ]) @else @include('temas.componentes.video.create',[ 'conteudo' => $conteudo, 'label' => 'Cole o link do seu vídeo', 'id' => 'video_sobre_modal_edit', 'tipo' => 'video_sobre', ]) @endif {{-- titulo_sobre --}} @include('temas.componentes.texto.create',[ 'conteudo' => $conteudo, 'label' => 'Título', 'id' => 'titulo_sobre_modal_create', 'tipo' => 'titulo_sobre', ]) @if($conteudo->conteudos()->where('tipo','titulo_sobre')->first()) @include('temas.componentes.texto.edit',[ 'conteudo' => $conteudo->conteudos()->where('tipo','titulo_sobre')->first(), 'label' => 'Título', 'id' => 'titulo_sobre_modal_edit', 'tipo' => 'titulo_sobre', ]) @endif {{-- texto_sobre --}} @include('temas.componentes.textarea.create',[ 'conteudo' => $conteudo, 'label' => 'Texto', 'id' => 'texto_sobre_modal_create', 'tipo' => 'texto_sobre', ]) @if($conteudo->conteudos()->where('tipo','texto_sobre')->first()) @include('temas.componentes.textarea.edit',[ 'conteudo' => $conteudo->conteudos()->where('tipo','texto_sobre')->first(), 'label' => 'Texto', 'id' => 'texto_sobre_modal_edit', 'tipo' => 'texto_sobre', ]) @endif {{-- Imagem_sobre --}} @if($conteudo->conteudos()->where('tipo','imagem_sobre')->first()) @include('temas.componentes.imagem.edit',[ 'conteudo' => $conteudo->conteudos()->where('tipo','imagem_sobre')->first(), 'label' => 'Imagem', 'id' => 'imagem_sobre_modal_edit', 'tipo' => 'imagem_sobre', ]) @else @include('temas.componentes.imagem.create',[ 'conteudo' => $conteudo, 'label' => 'Imagem', 'id' => 'imagem_sobre_modal_edit', 'tipo' => 'imagem_sobre', 'width' => 490, 'height' => 227 ]) @endif @endsection