@extends('layouts.app', ['title' => __('Orders')]) @section('admin_title') {{ $company->name }} @endsection @section('content')

@include('partials.flash')

{{ __('Company Management') }}

@if (config('settings.wildcard_domain_ready')) {{ $company->getLinkAttribute() }} @endif
@if(auth()->user()->hasRole('admin')) {{ __('Back to list') }} @endif @if (config('settings.show_company_page',true)) @if (config('settings.wildcard_domain_ready')) {{ __('View it') }} @else {{ __('View it') }} @endif @endif @if ($hasCloner) {{ __('Clone it') }} @endif {{ __('Login as') }}
{{ __('Company information') }}
@include('companies.partials.info')
@include('companies.partials.owner')
@if(count($appFields)>0)
@include('companies.partials.apps')
@endif @if(auth()->user()->hasRole('admin') && config('settings.enable_pricing',true) )
@include('companies.partials.plan')
@endif
@endsection