@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', 'required']) !!}
{!! Form::label('event_at', 'Data do evento *', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::input('date','event_at', $item->event_at ? $item->event_at->format('Y-m-d') : date('Y-m-d'), ['class' => 'form-control required', 'placeholder' => '', 'required']) !!}
{!! Form::label('event_time', 'Horário *', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::time('event_time', $item->event_at ? $item->event_at->format('H:i') : '', ['class' => 'form-control', 'placeholder' => 'Horário do Evento', 'required']) !!}
{!! Form::label('image', 'Imagem *', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::file('image', ['class' => 'custom-file-input']) !!}
Utilizar resolução de no máximo 422x200 @if ($item->image) Visualizar logo atual @endif
is_active == 1 ? 'checked' : '' }}>

{!! Form::label('limit_subscription_at', 'Data Limite de Inscrição *', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::input('date','limit_subscription_at', $item->limit_subscription_at ? $item->limit_subscription_at->format('Y-m-d') : date('Y-m-d'), ['class' => 'form-control required', 'placeholder' => '','required' ]) !!}
{!! Form::label('subscription_time', 'Horário limite *', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::time('subscription_time', $item->limit_subscription_at ? $item->limit_subscription_at->format('H:i') : '', ['class' => 'form-control', 'placeholder' => 'Horário Limite', 'required']) !!}
is_presencial == 1 ? 'checked' : '' }}>
is_exclusive == 1 ? 'checked' : '' }}>
{!! Form::label('link', 'Link Google Forms *', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::text('forms', $item->forms, ['class' => 'form-control', 'placeholder' => 'Link Google Forms']) !!} Utilizar link com https://
{!! Form::label('link', 'Link Meet *', ['class' => 'col-sm-2 col-form-label text-sm-left']) !!}
{!! Form::text('meet', $item->meet, ['class' => 'form-control', 'placeholder' => 'Link Meet']) !!} Utilizar link com https://
@push('scripts') @endpush