@extends($templateLayout) @section('page-title',$title) @section('inline-title',$title) @section('crumb')
  • {{ $title }}
  • @endsection @section('content')
    @lang('site.filter')
    @if($candidates->count()==0) @lang('site.no-records') @endif
    @foreach($candidates as $item)
    @if(!empty($item->candidate->picture) && file_exists($item->candidate->picture)) @elseif($item->candidate->gender=='m') @else @endif
    {{ $item->candidate->display_name }}

    @lang('site.age'): {{ getAge(\Illuminate\Support\Carbon::parse($item->candidate->date_of_birth)->timestamp) }}
    @lang('site.gender'): {{ gender($item->candidate->gender) }}

    @lang('site.view-profile')
    @endforeach
    {!! $candidates->appends(request()->input())->links() !!}
    @endsection @section('footer') @parent