@extends('layout') @section('title', 'Mon espace - '.$member->display_name) @section('content')

Espace famille

{{ $member->display_name }}

Renseignez votre fiche et ajoutez vos photos. Voir la fiche publique →

{{-- Photo de profil --}}

Photo de profil

@php $portrait = $member->avatar_path ? \Illuminate\Support\Facades\Storage::disk('public')->url($member->avatar_path) : null; @endphp
@if ($portrait) {{ $member->display_name }} @else {{ \Illuminate\Support\Str::substr($member->display_name, 0, 1) }} @endif
@csrf
{{-- Informations --}}

Informations

@csrf @method('PUT') @foreach ($fields as $key => $label) @endforeach
{{-- Galerie --}}

Album ({{ $member->photos->count() }})

@csrf
@if ($member->photos->isNotEmpty()) @else

Aucune photo pour le moment.

@endif
@endsection