@extends('layouts.tenant')
@section('title', 'Add New Client')
@section('content')
Add New Client
Create a new client record with their contact information.
@if($errors->any())
There were errors with your submission:
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@endsection