@extends('layouts.dashboard') @section('title', 'Edit Client') @section('content')
Back to Client Details
Edit Client - {{ $client->name }}
@csrf @method('PUT')
Organization Details
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('phone')
{{ $message }}
@enderror
Slug cannot be changed
@error('address')
{{ $message }}
@enderror

Plan & Limits
@error('subscription_type')
{{ $message }}
@enderror
@error('max_users')
{{ $message }}
@enderror
Current: {{ $client->users()->count() }} users
@error('max_client_admins')
{{ $message }}
@enderror
Current: {{ $client->clientAdmins()->count() }} admins
To extend subscription duration, use the "Extend Subscription" feature on the client details page.
Cancel
@endsection