> ## Documentation Index
> Fetch the complete documentation index at: https://docs.younegotiate.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Sender Details

> Jane enters the name of the company that sent the notice. If ABC Collections already exists in the portal, Jane can select it.

## Real-World Example

Jane enters the name of the company that sent the notice. If ABC Collections already exists in the portal, Jane can select it. If the sender is not known, the portal should let her provide enough sender details to continue.

## Visual Flow

```mermaid placement="top-right" actions={true} theme={"system"}
flowchart TD
    A["Consumer enters sender information"] --> B["Portal searches known creditor companies"]
    B --> C{"Sender matched?"}
    C -->|Yes| D["Consumer selects existing sender"]
    C -->|No| E["Consumer enters sender details"]
    D --> F["Sender step is saved"]
    E --> F
    classDef default fill:#F8FAFC,stroke:#64748B,stroke-width:1.5px,color:#0F172A;
    classDef actor fill:#E0F2FE,stroke:#0284C7,stroke-width:2px,color:#0C4A6E;
    classDef system fill:#F8FAFC,stroke:#64748B,stroke-width:1.5px,color:#0F172A;
    classDef decision fill:#FEF3C7,stroke:#D97706,stroke-width:2px,color:#78350F;
    classDef risk fill:#FEE2E2,stroke:#DC2626,stroke-width:2px,color:#7F1D1D;
    classDef outcome fill:#DCFCE7,stroke:#16A34A,stroke-width:2px,color:#14532D;
    class A,D,E actor;
    class B,F system;
    class C decision;
    class F outcome;
    linkStyle default stroke:#94A3B8,stroke-width:2px;
```

## How It Should Work

* It should help consumers identify the notice sender without needing internal creditor knowledge.
* It should support selecting an existing creditor profile or entering sender details.
* It should save the sender step before moving to account details.

## How It Should Not Work

* It should not force an incorrect creditor match just because names are similar.
* It should not block the consumer from continuing when the sender is not already in the portal.
* It should not create unsafe duplicate creditor records without required details.

## Developer Notes

* Sender details can connect to Company and CreditorProfile records.
* Matching must be helpful but not overly aggressive.

## Related App Areas

* `app/Livewire/Consumer/NoticeResponse/SenderDetails.php`
* `app/Livewire/Consumer/Forms/NoticeResponse/SenderDetailsForm.php`
* `resources/views/livewire/consumer/notice-response/sender-details.blade.php`
