@extends('layouts.main') @section('title', 'Edit Company User') @section('content')

Edit User: {{ $user->name }}

Update user information for {{ $company->company ?? $company->name }}
Back to Users
@csrf @method('PUT')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
Note:
  • Only the user's name and email can be updated
  • The user will remain linked to: {{ $company->company ?? $company->name }}
  • Role and company assignments cannot be changed
  • If you change the email, the user may need to verify the new email address
Cancel
@endsection @section('scripts') @endsection