@extends('layouts.app') @section('content')

Here’s who’s on this project.

Created By : {{ ucfirst($project->createdBy)}}
@if( auth()->user()->role_id == 1 || auth()->user()->role_id == 3 || auth()->user()->role_id == 4 || auth()->user()->role_id == 5 || auth()->user()->role_id == 6 )
{!! Form::open(['route' => ['project/user',$project->id] ]) !!}

Type names or emails to invite people to your team:

Your Team

@foreach($assignedUser as $item) @endforeach

Type emails to invite your clients:

Your Client

@foreach($assignedClients as $item) @endforeach
{!! Form::close() !!}
@endif @if( auth()->user()->role_id == 7 )
{!! Form::open(['route' => ['project/addUser',$project->id] ]) !!}

Type emails to invite your member:

Your Team

@foreach($assignedClients as $item) @endforeach
{!! Form::close() !!}
@endif
@stack('scripts')