@extends('home_layout.master_sidebar') @section('breadcrumbs') @include('home_layout.breadcrumb', [ 'title' => 'Edit Contact', 'breadcrumbs' => [ ['title' => 'Home', 'link' => '#'], ['title' => 'Contacts', 'link' => route('contacts.index')], ['title' => 'Edit Contact', 'link' => ''] ] ]) @stop @section('content')

Edit Contact

@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
@error('address')
{{ $message }}
@enderror
@error('notes')
{{ $message }}
@enderror
Cancel
@stop