@extends('layouts.master') @section('browserTitle') Edit patient\'s clinicians @endsection @section('breadcrumb') @endsection @section('title') {{ trans('menu.patient') }} {{ $patient->name }} {{ $patient->surname }} @endsection @section('subtitle') {{ trans('msg.selectClinAttach') }}
@endsection @section('body')
@method('PUT') @csrf

{{ trans('msg.alreadyConnClin') }}

@foreach($connectedClinicians as $clinician)
@endforeach

{{ trans('msg.otherClin') }}

@foreach($clinicians as $clinician) @if(!$connectedClinicians->contains($clinician))
@endif @endforeach
@endsection