@extends('layouts.account')
@section('breadcrumb')
Accounts
{{ $account->identifier }}
Contacts
@endsection
@section('content')
Add a Contact to the Account
{!! Form::model($account, [
'route' => ['admin.account.contact.store', $account->id],
'method' => 'post'
]) !!}
{!! Form::submit('Add', ['class' => 'btn btn-success btn-centered']) !!}
{!! Form::close() !!}
@endsection