@extends ('layouts.default') @section ('content') @include('xero.partials._header')
@if (Session::has('error'))
{{{ Session::get('error') }}}
@endif
@if (Session::has('message'))
{{{ Session::get('message') }}}
@endif
{{ $organisation }}
@if (count($num_locations) > 0) @foreach ($locations as $location)
{{ $location->org_name }}

@endforeach @endif
@include('modals._deactivate') @include('xero.partials._footer') @stop