@extends('layouts.app') @section('title', 'Edit Contact') @push('css') @endpush @section('content') Edit Contact @method('PUT') @csrf General Professionals/Contractors Investors General - Client Type @foreach ($transactionAssociations as $title) {{ $title }} @endforeach Professional Business Type @foreach ($assignTitles as $value => $label) {{ $label }} @endforeach Tags/Properties of Interest @php $formattedTags = array_map(fn($tag) => strtolower(str_replace(' ', '_', $tag)), $contact['tags'] ?? []); @endphp @foreach ($propertyOptions as $value => $label) {{ $label }} @endforeach {{ __('Save & Exit') }} {{ __('Save') }} Exit @endsection @push('js') @endpush