@extends('layouts.tenant')
@section('title', 'Edit Client')
@section('content')
Edit {{ $client->name }}
Update client information and contact details.
@if($errors->any())
There were errors with your submission:
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@endsection