@extends('layout') @section('title', 'Organisation') @section('content')

Organisations - {{ $header }}

@if(!$profiles->isEmpty())
@csrf @foreach($profiles as $profile) @endforeach
# Chamber Ethnic Affiliation First Name Last Name Email View
{{ $profile->chamber_name }} {{ $profile->ethnic_affiliation }} {{ $profile->first_name }} {{ $profile->last_name }} {{ $profile->email_address }} @csrf @method('DELETE') @if (in_array(Auth::user()->role, array('admin'))) @endif
# Chamber Ethnic Affiliation First Name Last Name Email View
@endif Create
@endsection