@extends('super_admins.layouts.master') @section('title') View Company Page @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif

Company Page

Name

{{ $company_page->name ? $company_page->name : '--' }}

Heading

{{ $company_page->heading ? $company_page->heading : '--' }}

Image

@if ($company_page->image) {{ $company_page->slug }} @else -- @endif

Slug

{{ $company_page->slug ? $company_page->slug : '--' }}

Status
{{ $company_page->is_active ? 'Active' : 'Inactive' }}
Created At

{{ date_format($company_page->created_at, 'd-m-Y') }}

Description

{!! $company_page->description !!}

@endsection @section('scripts') @endsection