{!! Form::label('name', trans('lang.name'), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::text('name', null, [ 'class' => 'form-control', 'placeholder' => trans('lang.name_placeholder'), 'required' => 'required', ]) !!}
{!! Form::label('start_at', trans('lang.start_at'), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::number('start_at', null, [ 'class' => 'form-control', 'placeholder' => trans('lang.start_at_placeholder'), 'required' => 'required', ]) !!}
{!! Form::label('end_at', trans('lang.end_at'), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::number('end_at', null, [ 'class' => 'form-control', 'placeholder' => trans('lang.end_at_placeholder'), 'required' => 'required', ]) !!}
{!! Form::label('video[]', trans('lang.video_name'), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::select('video[]', $videos, $videosSelected, [ 'class' => 'select2 form-control', 'multiple' => 'multiple', ]) !!}
{!! Form::label('role_id', trans('lang.role'), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::select('role_id', $roles, null, [ 'placeholder' => 'Please select Role', 'class' => 'form-control', 'id' => 'role_id', ]) !!}
{!! Form::label('lang', trans('lang.lang'), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::select('lang', ['fr' => 'fr', 'en' => 'en'], null, [ 'placeholder' => 'Please select Lang', 'class' => 'form-control', 'id' => 'lang', ]) !!}
{{--
{!! Form::label('status', trans('lang.status'), ['class' => 'col-3 control-label text-right']) !!}
--}}
{!! Form::label(null, null, ['class' => 'col-3 control-label text-right']) !!}
{!! Form::file('report', [ 'class' => 'dropify', 'accept' => 'application/pdf', 'data-default-file' => isset($report) && $report->hasMedia() ? $report->getFirstMediaUrl() : '', ]) !!}
{{ trans('lang.report_help') }} @if (isset($report)) (Download) @endif
{{ trans('lang.cancel') }}
@section('page-styles') {{-- dropify --}} @stop @section('vendor-script') {{-- dropify --}} @stop @section('page-script') {{-- --}} {{-- dropify --}} @stop