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

{{ $organisation->organisationname }}

@if ($organisation->debtorID!="")({{ __('Debtor ID') }}: {{ $organisation->debtorID }})@endif
{{ csrf_field() }} {{ method_field('PATCH') }}


{{ __('Profiles') }}

{{ __('Unit Price') }}

{{ __('Credits') }}

@foreach ($profiles as $profile) @php $organisationcredit=$organisationcredits->where('profileID', $profile->id)->first(); $organisationprice=$organisationprices->where('profileID', $profile->id)->first(); @endphp

   {{ $profile->trans('profilename') }}

@endforeach @php $organisationcredit=$organisationcredits->where('profileID', '=', NULL)->first(); @endphp

   {{ __('General') }}

 
{{ csrf_field() }}
{{ __('Facilitators in this Organisation') }}
@foreach ($organisationusers as $user) @endforeach
{{ $user->name }} ({{ $user->email }})
{{ __('My Facilitators') }}
@foreach ($facilitators as $user) @endforeach
{{ $user->name }} ({{ $user->email }})
{{ csrf_field() }}
@endsection @push('scripts') @endpush