@extends('layouts.client') @section('content') @if($user->isAdmin() || $user->isApplicant())
@if(session()->has('message'))
× {{ session()->get('message') }}
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Panel de {{ $user->name }} {{ $user->surname }}






@if(!empty($invitations)) @foreach($invitations as $inv) @endforeach @endif
{{ $name_status[$inv['status']] }}X
@else
No tienes permisos para ver este panel, regresar a "Inicio".
@endif @endsection @section('scripts') @endsection