@props(['profiles']) {{-- Display a profile card for each profile --}} {{-- Using Bootstrap card component for styling --}}
...
{{ $profiles->name }}
{{ $profiles->email }}

{{ Str::limit($profiles->bio, 50) }}

View Profile