@extends('admin.layouts.admin_layout') @push('css') @endpush @section('content')
@include('flash::message') {{-- Company overview card --}}

{{ $company->name }}

@if($company->getIndustry('industry'))

{{ $company->getIndustry('industry') }}

@endif

{{ __('Member Since') }}, {{ $company->created_at->format('M d, Y') }}

@if($company->location)

{{ $company->location }}

@endif
@if(!empty($company->phone))

{{ $company->phone }}

@endif @if(!empty($company->email))

{{ $company->email }}

@endif @if(!empty($company->website) && filter_var($company->website, FILTER_VALIDATE_URL) !== false)

{{ \Illuminate\Support\Str::limit($company->website, 40) }}

@else

URL not present in profile

@endif @if($company->getSocialNetworkHtml())
{!! $company->getSocialNetworkHtml() !!}
@endif
{{-- About Company --}}
{{ __('About Company') }}
{!! $company->description !!}
{{-- Job Openings --}}