@extends('layouts.user')
{{-- Web site Title --}}
@section('title')
{{ $title }}
@stop
{{-- Content --}}
@section('content')
@include('flash::message')
{{-- Tab panel --}}
@include('customers/'.$type.'/_form')
@include('user/parts/_userpicker')
@include('customers/'.$type.'/_generate-invoice', ['invoiceType' => 'invoice'])
@include('customers/'.$type.'/_generate-invoice', ['invoiceType' => 'proforma'])
@stop