@extends('layouts.app') {{-- @section('head-needMapScript', 'ON') --}} @section('content')

{{$user->first_name}} {{$user->second_name}}

Données personnelles

Email : {{$user->email}}
Téléphone : {{$user->phone}}
Compte créé le : {{$user->created_at}}

@if($errors->has('password'))

{{$errors->first('password')}}

@endif @if($errors->has('email'))

{{$errors->first('email')}}

@endif @if($errors->has('phone'))

{{$errors->first('phone')}}

@endif @if($errors->has('first_name'))

{{$errors->first('first_name')}}

@endif @if($errors->has('second_name'))

{{$errors->first('second_name')}}

@endif @include('components.user.profile.modal_for_change_information')
@isClient @include('components.user.profile.isClient') @endisClient @isProvider @include('components.user.profile.isProvider') @endisProvider
@endsection