@extends('layout.resellerpanel.main') @section('content')

View Account
Edit

@include('includes.errors') @include('includes.success')

Account Details
@if(count($account_owner)) {{$account_owner->FirstName}} {{$account_owner->LastName}} @endif
{{$account->Ownership}}
{{$account->FirstName}}
{{$account->LastName}}
{{$account->Number}}
{{$account->Website}}
{{$account->AccountName}}
{{$account->Phone}}
@if($account->IsVendor == 1 ) Yes @else No @endif
{{$account->Fax}}
@if($account->IsCustomer == 1 ) Yes @else No @endif
{{$account->Employee}}
{{$account->BillingEmail}}
@if($account->Status == 1 ) Active @else Inactive @endif
{{$account->VatNumber}}
{{(Currency::getCurrency($account->CurrencyId))}}
{{$account->TimeZone}}
@if(isset($account->Description) && $account->Description!='')
{{$account->Description}}
@endif
Billing
{{ TaxRate::getTaxRate(AccountBilling::getTaxRate($account->AccountID))}}
@if(isset($AccountBilling->BillingType))
{{AccountApproval::$billing_type[$AccountBilling->BillingType]}}
@endif
{{AccountBilling::getBillingKey($AccountBilling,'BillingTimezone')}}
Address Information
{{$account->Address1}}
{{$account->City}}
{{$account->Address2}}
{{$account->PostCode}}
{{$account->Address3}}
{{$account->Country}}
Payment Information
{{$account->PaymentMethod}}
{{$account->PaymentDetail}}
Contacts
@if(count($contacts)>0) @foreach($contacts as $contact) @endforeach @endif
Contact Name Phone Email
{{$contact->NamePrefix}} {{$contact->FirstName}} {{$contact->LastName}} {{$contact->Phone}} {{$contact->Email}}
@include('includes.submit_note_script',array("controller"=>"accounts")) @stop