@extends('layouts.app') @section('content')

Edit Contact

@csrf
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
Cancel
Current Contact Info
Contact Details:

Name: {{ $contact->name }}

Email: {{ $contact->email }}

Phone: {{ $contact->phone }}

Note:

Make sure all information is accurate before updating.

@endsection