@extends('layout.member_app') @section('content')
  1. Home
  2. Search
FIND THAT SPECIAL SOMEONE
Clear Filters
{{ Form::open(['url' => '/search', 'method' => 'GET']) }}
@if (auth()->guard('member')->user()->gender == 'M') {{ Form::radio('gender', 'M', true, ['id' => 'Male']) }} @else {{ Form::radio('gender', 'F', true, ['id' => 'Female']) }} @endif
{{ Form::number('age_from', $ageFrom, ['id' => 'age_from', 'class' => 'form-control']) }}
{{ Form::number('age_to', $ageTo, ['id' => 'age_to', 'class' => 'form-control']) }}
{{ Form::select('marital_status_id', [null => 'Any'] + $maritalStatusArr, $maritalStatusId, ['id' => 'marital_status_id','class' => 'form-control']) }}
{{ Form::select('height_min', [null => 'Any'] + $heightArr, $heightMin, ['id' => 'height_min','class' => 'form-control']) }}
{{ Form::select('height_max', [null => 'Any'] + $heightArr, $heightMax, ['id' => 'height_max','class' => 'form-control']) }}
{{ Form::select('skin_complexion_id', [null => 'Any'] + $skinComplexionArr, $skinComplexionId, ['id' => 'skin_complexion_id','class' => 'form-control']) }}
{{ Form::select('religion_id', [null => 'Any'] + $religionArr, $religionId, ['id' => 'religion_id','class' => 'form-control']) }}
{{ Form::select('caste_id', [null => 'Any'] + $casteArr, $casteId, ['id' => 'caste_id','class' => 'form-control']) }}
{{ Form::select('mother_tongue_id', [null => 'Any'] + $motherTongueArr, $motherTongueId, ['id' => 'mother_tongue_id','class' => 'form-control']) }}
{{ Form::select('employment_type_id', [null => 'Any'] + $employmentTypeArr, $employmentTypeId, ['id' => 'employment_type_id','class' => 'form-control']) }}
{{ Form::select('salary_id', [null => 'Any'] + $salaryArr, $salaryId, ['id' => 'salary_id','class' => 'form-control']) }}
{{ Form::select('residence_state_id', [null => 'Any'] + $stateArr, $residenceStateId, ['id' => 'residence_state_id','class' => 'form-control']) }}
{{ Form::select('family_status_id', [null => 'Any'] + $familyStatusArr, $familyStatusId, ['id' => 'family_status_id','class' => 'form-control']) }}
{{ Form::select('designation_id', [null => 'Any'] + $designationArr, $designationId, ['id' => 'designation_id','class' => 'form-control']) }}
{{ Form::close() }}
@if (count($partners) < 1)

No profiles found.

@else @if (!empty(request()->all()))

{{ $partners->total() }} Matches found based on your search

@endif @foreach ($partners as $partner)
Profile
{{ $partner->name }}
Member ID : {{ $partner->reg_no }}
{{ \Carbon\Carbon::parse($partner->dob)->age }} Yrs, {{ cmToFeet($partner->height) }} {{ $partner->motherTongue->name }} {{ $partner->religion->name }} , {{ $partner->caste->name }} {{ $partner->highestEducation->name }}
Lives in {{ $partner->city }} {{ $partner->employmentType->name }} / {{ $partner->salary->name }}
@if ($partner->has_received_interest) @else @endif   View Profile @if ($partner->has_shortlisted) @else @endif
@endforeach
{{ $partners->appends($filter)->links() }}
@endif
@endsection @section('js_assets') @endsection