@extends('admin.layouts.master') @section('title', $title) @section('content')
@include('admin.inc.breadcrumb')

{{ __('dashboard.view') }} {{ $title }}

{{ __('dashboard.name') }}: {{ $row->title }}

{{ __('dashboard.designation') }}: {{ $row->designation->title }}

@if(!empty($row->designation->department))

{{ __('dashboard.department') }}: {{ $row->designation->department }}

@endif
@if(is_file('uploads/'.$path.'/'.$row->image_path))

{{ __('dashboard.photo') }}:

Profile @endif

{{ __('dashboard.description') }}: {!! $row->description !!}


{{ __('dashboard.phone') }}: {{ $row->phone }}

@if(isset($row->whatsapp))

{{ __('dashboard.whatsapp') }}: {{ $row->whatsapp }}

@endif

{{ __('dashboard.email') }}: {{ $row->email }}


@if(!empty($row->facebook)) @endif @if(!empty($row->twitter)) @endif @if(!empty($row->instagram)) @endif @if(!empty($row->linkedin)) @endif @if(!empty($row->website)) @endif

{{ __('dashboard.status') }}: @if( $row->status == 1 ) {{ __('dashboard.active') }} @else {{ __('dashboard.inactive') }} @endif

@endsection