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

CAS Profile

Logged in as: {{ $user }}

(logout)

Attributes

@if(empty($attributes))

No attributes returned.

@else
@foreach($attributes as $key => $value) @endforeach
Key Value
{{ $key }} @if(is_array($value))
    @foreach($value as $v)
  • {{ $v }}
  • @endforeach
@else {{ $value }} @endif
@endif
@endsection