@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']) !!}
{!! Form::label('desktop', 'Imagem desktop *', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::file('desktop', ['class' => 'custom-file-input']) !!}
Utilizar resolução 440x510 @if ($item->desktop) Visualizar imagem atual @endif
{!! Form::label('mobile', 'Imagem mobile *', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::file('mobile', ['class' => 'custom-file-input']) !!}
Utilizar resolução 440x510 @if ($item->mobile) Visualizar imagem atual @endif
is_active == 1 ? 'checked' : '' }}>

{!! Form::label('button', 'Nome do botão', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::text('button', $item->button, ['class' => 'form-control', 'placeholder' => 'Saiba Mais']) !!}
{!! Form::label('link', 'Link do botão', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::text('link', $item->link, ['class' => 'form-control', 'placeholder' => 'Link HTTPS']) !!}
{!! Form::label('target', 'Abrir em', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::select('target', ['_self' => 'Mesma aba', '_blank' => 'Nova aba'], $item->target, ['class' => 'form-control']) !!}