@extends('admin.layouts.app') @section('title') {{ __('profile') }} @endsection @section('breadcrumbs')

{{ __('profile') }}

@endsection @section('content')
User profile picture

{{ $user->name }}

@foreach (Auth::user()->getRoleNames() as $role) ( {{ ucwords($role) }} ) @endforeach

@if (Auth::user()->can('profile.edit')) @endif
@endsection