@extends('layouts.app') @section('title',$contact->name) @section('breadcrumb') @endsection @section('content')

{{ $contact->name }}

@include('includes.errors') {!! Form::model($contact, ['action' => [ 'ContactController@update',$contact],'method' => 'put' ]) !!} @include('contact._form')
{!! Form::close() !!} @endsection