@extends('layouts.app') @section('content')

Modifier votre compte

@include('components.alert_success')
{{ csrf_field() }} {{ method_field('PUT') }}
@if ($errors->has('firstname'))
{{ $errors->first('firstname') }}
@endif
@if ($errors->has('lastname'))
{{ $errors->first('lastname') }}
@endif
@if ($errors->has('phone'))
{{ $errors->first('phone') }}
@endif
@if ($errors->has('company'))
{{ $errors->first('company') }}
@endif
@if($user->is_generated_password) @endif
@if ($errors->has('password'))
{{ $errors->first('password') }}
@endif
@endsection