# easy-invoice/2.2.0/templates/client-edit-page.php

Easy Invoice – Invoice Generator, PDF Quotes &amp; Payments, version 2.2.0. 28 lines.

- Page: https://pluginprobe.com/plugins/easy-invoice/2.2.0/code/templates/client-edit-page.php
- Raw: https://pluginprobe.com/plugins/easy-invoice/2.2.0/raw/templates/client-edit-page.php
- Modified: 2025-08-14T09:51:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/easy-invoice/2.2.0/code/templates/client-edit-page.php#L10-L20`.

```php
<?php
// Exit if accessed directly
if (!defined('ABSPATH')) {
    exit;
}

// The $client variable is passed from the controller and is an instance of the Client model
?>

<div class="p-8">
    <div class="mb-6">
        <div class="flex justify-between items-center">
            <div>
                <h1 class="text-2xl font-bold text-gray-900">Edit Client</h1>
            </div>
            <a href="?page=easy-invoice-clients" class="text-indigo-600 hover:text-indigo-800">
                <i class="fas fa-arrow-left mr-1"></i> Back to Client List
            </a>
        </div>
    </div>

    <!-- Client Edit Form -->
    <div class="bg-white shadow rounded-lg p-6">
        <?php include_once EASY_INVOICE_PLUGIN_DIR . 'templates/client-form.php'; ?>
    </div>
</div>

<!-- Client edit functionality is now handled by client-manager.js --> 
```
