@if($customFields)
{!! trans('lang.main_fields') !!}
@endif
{!! Form::label('name', trans("lang.field_name"), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::text('name', null, ['class' => 'form-control','placeholder'=> trans("lang.field_name_placeholder")]) !!}
{{ trans("lang.field_name_help") }}
{!! Form::label('description', trans("lang.field_description"), ['class' => 'col-3 control-label text-right']) !!}
{!! Form::textarea('description', null, ['class' => 'form-control','placeholder'=> trans("lang.field_description_placeholder") ]) !!}
{{ trans("lang.field_description_help") }}
{!! Form::label('image', trans("lang.field_image"), ['class' => 'col-3 control-label text-right']) !!}
{{ trans('lang.media_select')}}
{{ trans("lang.field_image_help") }}
@prepend('scripts') @endprepend
{!! Form::label('markets[]', trans("lang.field_markets"),['class' => 'col-3 control-label text-right']) !!}
{!! Form::select('markets[]', $market, $marketsSelected, ['class' => 'select2 form-control' , 'multiple'=>'multiple']) !!}
{{ trans("lang.field_markets_help") }}
@if($customFields)
{!! trans('lang.custom_field_plural') !!}
{!! $customFields !!}
@endif
{{trans('lang.cancel')}}