{!! BaseHelper::clean(theme_option('cookie_consent_message', trans('plugins/cookie-consent::cookie-consent.message'))) !!} @if (($learnMoreUrl = theme_option('cookie_consent_learn_more_url')) && ($learnMoreText = theme_option('cookie_consent_learn_more_text')))
{{ $learnMoreText }}
@endif
@if (theme_option('cookie_consent_show_reject_button', 'no') == 'yes')
{{ trans('plugins/cookie-consent::cookie-consent.reject_text') }}
@endif @if (! empty($cookieConsentConfig['cookie_categories']) && theme_option('cookie_consent_show_customize_button', 'no') == 'yes')
{{ trans('plugins/cookie-consent::cookie-consent.customize_text') }}
@endif
{{ theme_option('cookie_consent_button_text', trans('plugins/cookie-consent::cookie-consent.button_text')) }}
@if (! empty($cookieConsentConfig['cookie_categories']))
@foreach ($cookieConsentConfig['cookie_categories'] as $key => $category)
{{ trans('plugins/cookie-consent::cookie-consent.cookie_categories.' . $key . '.name') }}
{{ trans('plugins/cookie-consent::cookie-consent.cookie_categories.' . $key . '.description') }}
@endforeach
{{ trans('plugins/cookie-consent::cookie-consent.save_text') }}
@endif