@extends('user.layout') @php $selLang = \App\Models\Language::where([ ['code', \Illuminate\Support\Facades\Session::get('currentLangCode')], ])->first(); $userDefaultLang = \App\Models\User\Language::where([ ['user_id', \Illuminate\Support\Facades\Auth::id()], ['is_default', 1], ])->first(); $userLanguages = \App\Models\User\Language::where('user_id', \Illuminate\Support\Facades\Auth::id())->get(); @endphp @if (!empty($selLang) && $selLang->rtl == 1) @section('styles') @endsection @endif @section('content')
{{ __('Update_Footer_Text') }}
@includeIf('user.partials.languages')
@csrf @if ($userBs->theme == 'home_ten')

@endif
...
@if ($userBs->theme == 'home_six' || $userBs->theme == 'home_fourteen')
...

@endif

@if ($userBs->theme == 'home_four' || $userBs->theme == 'home_five' || $userBs->theme == 'home_seven')

@endif

@endsection