@extends('layouts.master') @section('title') {{ __($page_title) }} @endsection @section('page-title') {{ __($page_title) }} @endsection @section('body') @endsection @section('content')

{{ __($page_title) }}

{{ __('Institute Information') }}
@if ($institute->logo) @endif

{{ $institute->name }}

{{ $institute->phone ?? '-' }}

@if ($institute->country || $institute->state)

{{ $institute->country?->collectLocalization('name') }} @if ($institute->country && $institute->state) - @endif {{ $institute->state?->collectLocalization('name') }}

@endif

{{ $institute->address ?? '-' }}

{{ __('Status') }}: @if ($institute->status) {{ __('Active') }} @else {{ __('Not Active') }} @endif

{{ __('Owner') }}
@if ($institute->owner) @if ($institute->owner?->avatar) @endif
{{ $institute->owner?->name }}

{{ $institute->owner?->email }}

{{ $institute->owner?->phone ?? '-' }}

{{ __('Owner') }} @else

{{ __('Manager Not Found') }}

@endif
{{ __('Users') }}
    @forelse($institute->users as $user)
  • @if ($user->avatar) @endif
    {{ $user->name }}
    {{ $user->email }}
    @if ($institute->owner_id == $user->id) {{ __('Owner') }} @else {{ __('User') }} @endif
  • @empty
  • {{ __('User Not Found') }}
  • @endforelse
@endsection @section('scripts') @endsection