@include('header')
@include('sidebar')

Search for Active and Retired Credential Holders

@csrf

- Certification holders can opt out of inclusion on the registry and will not display on search

@if ($results->isEmpty())

No results found.

@else

{{ $results->count() }} results found

    @foreach ($results as $entry)
  • {{ $entry->name }}

    {{ $entry->certificate_name }}, {{ $entry->education_country }}
    {{ $entry->title_home }}
  • @endforeach
@endif
@include('footer')