@extends('layouts.base') @section('title', __('Edit user')) @section('content')

{{ __('Edit user') }} — {{ $user->firstname }} {{ $user->lastname }}

@if(session('ok'))
{{ session('ok') }}
@endif @if($errors->any())
@endif
{{ __('Company') }} : {{ $society?->name ?? '—' }}
@csrf @method('PUT') {{-- Identity --}}
{{-- Email / Phone --}}
{{-- Address --}}
{{-- Photo --}}
@if($user->photo)
Photo
@endif
{{-- Password --}}
{{ __('Leave blank to keep the current password') }}
{{-- Buttons --}}
{{ __('Cancel') }}
@endsection