@extends('admin.layouts.header') @section('styles') @endsection @section('content')

User Profile

@if(!empty($users)) @foreach($users as $user) @if($message = Session::get('success_done'))
{{ $message }}!
@endif @if($message = Session::get('error_done'))
{{ $message }}!
@endif
@if(!empty($user->profile_image))
@else
@endif
{{ $errors->first('name') }}
{{ $errors->first('last_name') }}
{{ $errors->first('biography') }}
{{ $errors->first('contact_no') }}
{{ $errors->first('company_role') }}
{{ $errors->first('company_website') }}
{{ $errors->first('linkedin_url') }}
{{ $errors->first('address') }}
@if(count($enquiry_investors) > 0)

Investments

@foreach($enquiry_investors as $enquiry_investor) @foreach($projects as $project) @if($project->id == $enquiry_investor->project_id) @php $ide = Crypt::encrypt($project->id); @endphp @else @endif @endforeach @endforeach
@else

Investments

User have not invested in any project

@endif @if(count($projects_created) > 0)

Published Projects

@foreach($projects_created as $project_created) @foreach($projects as $project) @if($project->id == $project_created->id) @php $ide = Crypt::encrypt($project->id); @endphp @else @endif @endforeach @endforeach
@else

Published Projects

User have not created any project

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