@extends('layouts.app') @section('content')
{{ _lang('My Profile') }}
@php $date_format = get_option('date_format','Y-m-d'); @endphp
@if(Auth::user()->user_type == 'client') @else @if(\Auth::user()->user_type == 'user') @endif @endif
profile_picture) : URL::asset('/images/avatar.png') }}">
{{ _lang('Profile Type') }}{{ $profile->client->profile_type }}
{{ _lang('Company Name') }}{{ $profile->client->company_name }}
{{ _lang('Contact Name') }}{{ $profile->client->contact_name }}
{{ _lang('Contact Email') }}{{ $profile->client->contact_email }}
{{ _lang('Contact Phone') }}{{ $profile->client->contact_phone }}
{{ _lang('Country') }}{{ $profile->client->country }}
{{ _lang('City') }}{{ $profile->client->city }}
{{ _lang('State') }}{{ $profile->client->state }}
{{ _lang('Zip') }}{{ $profile->client->zip }}
{{ _lang('Address') }}{{ $profile->client->address }}
{{ _lang('Facebook') }}{{ $profile->client->facebook }}
{{ _lang('Twitter') }}{{ $profile->client->twitter }}
{{ _lang('Linkedin') }}{{ $profile->client->linkedin }}
{{ _lang('Remarks') }}{{ $profile->client->remarks }}
{{ _lang('Group') }}{{ $profile->client->group->name }}
{{ _lang('Name') }} {{ $profile->name }}
{{ _lang('Email') }} {{ $profile->email }}
{{ _lang('Valid To') }} {{ $profile->valid_to != '' ? date($date_format, strtotime($profile->valid_to)) : '' }}
@endsection