@extends('layout') @section('title', 'Mon compte') @section('content')

@yield('title')

@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@endif
{{-- ========================= --}} {{-- COLONNE PROFIL --}} {{-- ========================= --}}

{{ Auth::user()->nom }} {{ Auth::user()->prenom }}

{{ strtoupper(Auth::user()->entreprise->nom) }}

@if (is_null(Auth::user()->email_verified_at)) Valider mon e-mail @endif
{{-- ========================= --}} {{-- COLONNE FORMULAIRE --}} {{-- ========================= --}}
{{-- Onglets --}}
{{-- ========================= --}} {{-- ONGLET OVERVIEW --}} {{-- ========================= --}}
Détails du compte
Nom
{{ Auth::user()->nom }} {{ Auth::user()->prenom }}
Entreprise
{{ strtoupper(Auth::user()->entreprise->nom) }}
Adresse
{{ strtoupper(Auth::user()->entreprise->adresse_1 . ' ' . Auth::user()->entreprise->adresse_2) }}
{{ strtoupper(Auth::user()->entreprise->code_postal . ' - ' . Auth::user()->entreprise->ville) }}
{{-- ========================= --}} {{-- ONGLET MODIFIER --}} {{-- ========================= --}}
@csrf @method('PUT')
Modifier mes informations
{{-- INFORMATIONS PERSO --}}
{{-- INFORMATION PASSWORD --}}
🔒 Note : laissez tous les champs de mot de passe vides si vous ne souhaitez pas changer votre mot de passe.
{{-- tab content --}}
@endsection