@include('admin.partials._validation')
Geral
{!! Form::label('title', 'Titulo *', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::text('title', $item->title, ['class' => 'form-control', 'placeholder' => 'Título']) !!}
{!! Form::label('description', 'Descrição', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::textarea('description', $item->description, ['class' => 'form-control', 'placeholder' => 'Descrição', 'maxlength' => 200]) !!}
{!! Form::label('image', 'Imagem *', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::file('image', ['class' => 'custom-file-input']) !!}
Utilizar resolução 422x200 @if ($item->image) Visualizar logo atual @endif
is_active == 1 ? 'checked' : '' }}>
Logos
@if($item->logoCount() < 3)

Selecione o arquivo da logo e salve!

@if($item->logoCount() > 1)

Arraste os itens para mudar a ordem.

@endif
Utilizar PNG ou JPG de no maximo 120X50
@else

Limite de 3 logos atingido!

@endif
@if ($item->logos->count() > 0)
@foreach($item->logos as $logo) @endforeach
{{ $logo->name }}
@endif @push('scripts') @endpush