@extends('layouts.master')
@section('heading')
{{ __('Create Contact') }}
@stop
@section('content')
{!! Form::open(['route' => 'contacts.store']) !!}
@include('contacts.form', ['submitButtonText' => __('Create New Contact')])
{!! Form::close() !!}
@stop