@extends('layouts.app') @section('title', 'Edit Contact') @push('css') @endpush @section('content')

Edit Contact

@method('PUT') @csrf
@php $formattedTags = array_map(fn($tag) => strtolower(str_replace(' ', '_', $tag)), $contact['tags'] ?? []); @endphp
{{ __('Save & Exit') }} {{ __('Save') }}
@endsection @push('js') @endpush