@extends('layouts.app') @push('head') @endpush @section('content')
@if ($features->isNotEmpty())
@foreach ($features as $feature)
@if ($feature->icon)
@endif

{{ $feature->title() }}

{{ $feature->description() }}

@endforeach
@endif @if ($stats->isNotEmpty())
@foreach ($stats as $stat)
{{ app()->getLocale() === 'ar' ? ($stat->label_top_ar ?: $stat->label_top_en) : $stat->label_top_en }}

{{ app()->getLocale() === 'ar' ? ($stat->label_bottom_ar ?: $stat->label_bottom_en) : $stat->label_bottom_en }}

@endforeach
@endif
@if ($about->years_experience) @endif
{{ __('site.about_badge') }}

{{ $about->homeHeading() }}

@if ($about->homeBody())

{{ $about->homeBody() }}

@endif {{ __('site.learn_more') }}
@if ($practiceAreas->isNotEmpty())
{{ __('site.our_practice') }}

{{ __('site.our_practice_areas') }}

@foreach ($practiceAreas as $practiceArea)

{{ $practiceArea->title() }}

{{ $practiceArea->teaser() }}

{{ __('site.service_details') }}
@endforeach
@endif @if ($team->isNotEmpty())
{{ __('site.our_team_badge') }}

{{ app()->getLocale() === 'ar' ? 'فريق متخصص من المحامين والمستشارين القانونيين' : 'A Dedicated Team of Legal & Professional Excellence' }}

@foreach ($team as $member)

{{ $member->name() }}

{{ $member->title() }} @if ($member->bio())

{{ \Illuminate\Support\Str::limit($member->bio(), 140) }}

@endif {{ __('site.view_attorney_profile') }}
@endforeach
@endif @if ($cta->heading())

{{ $cta->heading() }}

@if ($cta->paragraph())

{{ $cta->paragraph() }}

@endif @if ($cta->buttonText()) {{ $cta->buttonText() }} @endif
@endif
{{ __('site.contact_badge_short') }}

{{ __('site.have_a_deal') }}

@include('partials.contact-form')
@if ($settings->map_embed_url) @endif
@endsection