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

New client

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