@extends('layouts.app')
@section('title', 'Edit Group - ' . $clientGroup->name)
@section('content')
Edit Group
{{ $clientGroup->name }}
@if($errors->any())
Please fix the following errors:
@foreach($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@endsection