@extends('layouts.app') @section('page-pretitle', __('Management')) @section('page-title', __('Company Details')) @section('content') @if(session('success')) @endif

{{ $company->name ?? '-' }}

@if (auth()->user()->role == 'admin') @endif

{{ __('Address') }}

{{ $company->address ?? '-' }}

{{ __('Phone') }}

{{ $company->phone ?? '-' }}

{{ __('Email') }}

{{ $company->email ?? '-' }}

{{ __('Website') }}

{{ $company->website ?? '-' }}

{{-- @if(!empty($company->experience))

{{ __('Other Details') }}

{{ $company->experience }}

@endif --}} @if(!empty($company->other_details))

{{ __('Other Details') }}

{!! $company->other_details !!}
@endif @if($company->files && $company->files->count())

{{ __('Uploaded Files') }}

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

{{ __('Remarks') }}

{{ $company->remarks }}

@endif
@endsection @section('scripts') @endsection