@extends('backend-template')
@section('breadcrumbs')
{!! show_breadcrumbs(['Settings' => linker()->userSettings() , 'Edit contact' => false]) !!}
@stop
@section('content')
Edit contact
@include('layouts/form_errors')
{!! Form::open(['url' => route('contact.update', $contact->id),
'class' => 'form-horizontal dialog-form',
'autocomplete' => 'off',
'method' => 'PUT']) !!}
@include('profile.contact._form')
{!! Form::close() !!}
@stop
@section('js_functions')
my_main.get_regions();
my_main.contact_type();
@stop