@extends('user.layout') @php $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 @includeIf('user.partials.rtl-style') @section('content')
@if (!is_null($userDefaultLang)) @if (!empty($userLanguages)) @endif @endif
@if ( $userBs->theme == 'home_one' || $userBs->theme == 'home_three' || $userBs->theme == 'home_six' || $userBs->theme == 'home_seven')
{{ __('Update Team Section') }}
@csrf
@if ($errors->has('team_section_title'))

{{ $errors->first('team_section_title') }}

@endif
@if ($errors->has('team_section_subtitle'))

{{ $errors->first('team_section_subtitle') }}

@endif
@endif
{{ __('Members') }}
{{ __('Add Member') }}
@if (count($memberInfos) == 0)

{{ __('NO MEMBER FOUND!') }}

@else
@if ( $userBs->theme == 'home_one' || $userBs->theme == 'home_three' || $userBs->theme == 'home_six' || $userBs->theme == 'home_seven') @endif @foreach ($memberInfos as $memberInfo) @if ( $userBs->theme == 'home_one' || $userBs->theme == 'home_three' || $userBs->theme == 'home_six' || $userBs->theme == 'home_seven') @endif @endforeach
{{ __('Image') }} {{ __('Name') }} {{ __('Rank') }}{{ __('Featured') }}{{ __('Actions') }}
@if (!is_null($memberInfo->image)) user @else - @endif {{ $memberInfo->name ?? '-' }} {{ $memberInfo->rank ?? '-' }}
@csrf
@csrf
@endif
@endsection