@php $surveyLang = session('survey_lang', request()->get('lang', 'en')); $isArabic = $surveyLang === 'ar'; @endphp @php $surveyCompany = $survey->company ?? null; $primaryColor = $surveyCompany->primary_color ?? '#a6cf45'; $secondaryColor = $surveyCompany->secondary_color ?? '#2c3e50'; @endphp @yield('title', 'Survey') - {{ $surveyCompany->name ?? 'Employee Survey' }} @if($surveyCompany && $surveyCompany->favicon) @else @endif @if($isArabic) @endif @stack('styles')
@if($surveyCompany && $surveyCompany->logo) {{ $surveyCompany->name }} @else
{{ $surveyCompany->initials ?? 'S' }}
@endif

{{ $surveyCompany->name ?? 'Employee Survey' }}

{{ $survey->title ?? 'Survey' }}

@if(isset($survey) && !empty($survey->welcome_message_ar)) @endif
@yield('content')
@stack('scripts')