@extends('backend.layouts.master') @section('title', "Profile | ".$user->name) @section('css') @endsection @section('content')
{{-- user-img--}}

{{ucwords($user->name)}}

{{ucfirst($user->user_type)}}

{{ ($user->address !== null) ? ucwords($user->address) : "Address not set yet"}}
{{ ($setting_data !== null && $setting_data->website_name !== null) ? $setting_data->website_name:"Canosoft Technology" }}
Complete Your Profile
{{profile_percentage($user->id)}}%
Portfolio
@if(@$user->fb !== null) @endif @if(@$user->twitter !== null) @endif @if(@$user->insta !== null) @endif @if(@$user->linkedin !== null) @endif
Information
Full Name : {{ucwords($user->name)}}
Mobile : {{($user->contact !== null) ? ucwords($user->contact):"Not set yet."}}
E-mail : {{$user->email}}
Location : {{ ($user->address !== null) ? ucwords($user->address) : "Not set yet."}}
Joining Date : {{\Carbon\Carbon::parse($user->created_at)->isoFormat('MMMM Do, YYYY')}}
About
@if($user->about == null)

Hi I'm {{ucfirst($user->name)}}, I am currently a user in this system developed by Canosoft Technology for the parent company {{@$setting_data->website_name}}. The company itself is described as : {!! @$setting_data->website_description !!}

I joined the ranks of the user in {{\Carbon\Carbon::parse($user->created_at)->isoFormat('MMMM Do, YYYY')}}, where my assigned role is that of an {{$user->user_type}}. The parent company is located at {{@$setting_data->address}} with the registered email {{@$setting_data->email}}.

@else {!! nl2br($user->about) !!} @endif

Designation :

Lead Designer / Developer

Website :

omamamanpower.com
@if(count($services)>0)
Active Services
@foreach($services as $service)
{{$service->title}}

Slug : {{$service->slug}}

@endforeach
@endif
@endsection @section('js') @endsection