@extends('frontend::layouts.master') @php $about_section = site_configurations('about_us_section', true); $team_section = site_configurations('team_section', true); @endphp @section('title') {{ $seo?->title }} @endsection @section('content')
@if (getSingleImage($about_section, 'left_top_image')) @endif @if (getSingleImage($about_section, 'left_bottom_image')) @endif
@if (getSingleImage($about_section, 'right_top_image'))
@endif @if (getTranslatedData($about_section, 'show_shape_image') == 1) @endif
@if (getTranslatedData($about_section, 'sub_title')) {{ getTranslatedData($about_section, 'sub_title') }} @endif @if (getTranslatedData($about_section, 'title'))

{{ getTranslatedData($about_section, 'title') }}

@endif
@if (getTranslatedData($about_section, 'short_description')) {{ getTranslatedData($about_section, 'short_description') }} @endif @if (getTranslatedData($about_section, 'description'))

{{ getTranslatedData($about_section, 'description') }}

@endif @if (getTranslatedData($about_section, 'button_text') && getTranslatedData($about_section, 'button_url')) @endif
@if (count($team_members) > 0)
@if (getTranslatedData($team_section, 'sub_title')) {{ getTranslatedData($team_section, 'sub_title') }} @endif @if (getTranslatedData($team_section, 'title'))

{{ getTranslatedData($team_section, 'title') }}

@endif @if (getTranslatedData($team_section, 'description'))

{{ getTranslatedData($team_section, 'description') }}

@endif
@foreach ($team_members as $team_member) @include('frontend::team.team-item', ['team_member' => $team_member]) @endforeach
@endif @include('frontend::components.newsletter_area')
@endsection