File: D:/HostingSpaces/SBogers10/ste.komma.pro/resources/views/templates/languages_index.blade.php
@extends('master')
@section('title', !empty($page->translation->meta_title) ? $page->translation->meta_title : config('site.company.name'))
@section('meta_description', $page->translation->meta_description)
@section('content')
<div class="l-body l-body--rounded-tr">
<div class="u-spacing-pt5">
<div class="l-contain">
@include('components.breadcrumb')
</div>
</div>
@include('organisms.components')
<div class="l-block">
@if(isset($steLanguages) && $steLanguages->isNotEmpty())
<div class="l-contain">
@include('organisms.languages', [
'languageMenuItems' => $steLanguages,
])
</div>
@endif
@include('organisms.workflow')
</div>
<div class="l-block l-contain">
@include('organisms.cta', [
'ctaTitle' => __('site/about.cta.title'),
'ctaButtonText1' => __('site/global.cta.buttonText1'),
'ctaButtonText2' => __('site/global.cta.buttonText2'),
])
</div>
</div>
@endsection