{{-- about us single page --}} @extends('layouts.porto') @section('title', 'About Us') @section('content')

{{ __('The New Way to ') }} {{ __('Success') }} {{ __('Advance') }} {{ __('Progress') }}

{{ __('We never stop improving our services, including development methodologies, engineering practices, management techniques and') }} {{ __('QA') }} {{ __('standards to enhance our team’s capabilities and increase customer satisfaction.') }}

{{ $aboutUs->title }}

{{ $aboutUs->description }}

{{ __('Meet') }} {{ __('Our Team') }}

@foreach ($teams as $team)
user-image
{{ $team->name ?? '' }}

{{ $team->designation->name ?? '' }}

{{ __('Facebook') }} {{ __('Twitter') }} {{ __('Linkedin') }}


@endforeach

{{ __('Meet') }} {{ __('Our Chanel Partners') }}

@foreach ($chanelPartners as $partner)
user-image
{{ $partner->name ?? '' }}

{{ $partner->zone ?? '' }}




@endforeach

{{ __('Our') }} {{ __('History') }}

{{ __('How we have started') }}

@foreach ($histories as $history) @if ($history->year % 2 == 0)

{{ $history->year ?? '' }}

{{ $history->description ?? '' }}

@else

{{ $history->year ?? '' }}

{{ $history->description ?? '' }}

@endif @endforeach
@stop