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

Easy Invoice – Invoice Generator, PDF Quotes &amp; Payments, version 2.3.1. 27 lines.

- Page: https://pluginprobe.com/plugins/easy-invoice/2.3.1/code/templates/client-edit-page.php
- Raw: https://pluginprobe.com/plugins/easy-invoice/2.3.1/raw/templates/client-edit-page.php
- Modified: 2026-05-21T08:29:24+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.3.1/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>

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


```
