@extends('frontend.frontend-page-master')
@section('site-title')
{{get_static_option('team_page_'.$user_select_lang_slug.'_name')}}
@endsection
@section('page-title')
{{get_static_option('team_page_'.$user_select_lang_slug.'_name')}}
@endsection
@section('breadcrumb')
{{get_static_option('team_page_'.$user_select_lang_slug.'_name')}}
@endsection
@section('page-meta-data')
@endsection
@section('content')
@foreach($all_team_members as $data)
{!! render_image_markup_by_attachment_id($data->image,"grid") !!}
@if(!empty($data->icon_one) && !empty($data->icon_one_url))
@endif
@if(!empty($data->icon_two) && !empty($data->icon_two_url))
@endif
@if(!empty($data->icon_three) && !empty($data->icon_three_url))
@endif
{{$data->name}}
{{$data->designation}}
@endforeach
@endsection