@extends('layouts.app') @section('title') - Modification du profil @endsection @section('content')

Modification du profil

@csrf
@if($errors->has('fullname'))

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

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

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

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

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

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

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

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

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

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

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

@endif
@endsection