@extends('layouts.app') @section('title', 'Contacts List') @section('content')

Contacts Contacts Save recipient details and quickly select them when adding signers to a signature request. Recipients added while sending a document are automatically saved to your contacts for future use.

Save recipient information for faster signature requests.

@forelse($contacts as $key => $contact)

{{ $contact->contact_firstname }} {{ $contact->contact_lastname }}

@if($contact->segment_names) @foreach(explode(',', $contact->segment_names) as $seg) {{ $seg }} @endforeach @endif
@empty
No contacts available
@endforelse
{{ $contacts->links('vendor.pagination.tailwind') }}

@csrf
@isset($availableSegments) @foreach($availableSegments as $seg)
@endsection