@extends('layouts.account') @section('breadcrumb') @endsection @section('content')

Delete an account contact

{!! Form::open(['route' => ['admin.account.contact.destroy', $account], 'method' => 'delete']) !!}

You are going to remove the following contact from the contact list. Please confirm your action.

{{ $contact->identifier }}

{!! Form::hidden('account_id', $account->id) !!} {!! Form::hidden('contact_id', $contact->id) !!} {!! Form::submit('Remove', ['class' => 'btn btn-danger btn-centered']) !!} {!! Form::close() !!} @endsection