diff --git a/app/Abstracts/View/Components/DocumentForm.php b/app/Abstracts/View/Components/DocumentForm.php index 2d6d1c26c..c8b12a186 100644 --- a/app/Abstracts/View/Components/DocumentForm.php +++ b/app/Abstracts/View/Components/DocumentForm.php @@ -390,6 +390,10 @@ abstract class DocumentForm extends Base $contact = $document->contact; } + if (request()->old('contact', false)) { + $contact = request()->old('contact'); + } + return $contact; }