{!! Form::label('agreement','Content') !!}
{!! RTEForm::rte('agreement', isset($agree) ? $agree->agreement : '') !!}
{!! Form::label('country', 'Country') !!}
{!! Form::select('country[]', $bCountries, isset($agree) ? $country : ["all"] , ['class' => 'form-control select_select2', 'id' => 'country_select', 'multiple', 'style' => 'width:100%;']) !!}
{!! Form::label('language', 'Language') !!}
{!! Form::select('language[]', $bLanguages, isset($agree) ? $language : ["all"], ['class' => 'form-control select_select2', 'multiple', 'style' => 'width:100%;']) !!}
{!! Form::checkbox('is_required' , 1 , isset($agree) ? $agree->is_required : false ) !!}
{!! Form::label('is_required','Required') !!}
@if(isset($agree->id) > 0)
@endif