@extends('layouts.admin') @section('title', 'Edit Client — OAH') @section('content')

Edit client

{{ $client->name }}

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @include('admin.clients._form', [ 'client' => $client, 'formAction' => route('admin.clients.update', $client), 'submitLabel' => 'Update client', 'productCount' => $productCount, 'catalogProducts' => $catalogProducts, ])
@endsection