@extends('layouts.business') @section('title', 'Create Team') @section('content')

Create Team

Add a new team to {{ $business->business_name }}

@csrf
@error('name')
{{ $message }}
@enderror
@error('description')
{{ $message }}
@enderror
@error('status')
{{ $message }}
@enderror
@if($staff && count($staff) > 0)
@else
No staff members available yet. You can add staff members first, then add them to teams.
Add Staff Member
@endif
Cancel
Tips
  • Team names should be descriptive (e.g., "Management Team")
  • You can add members after creating the team
  • Team status determines visibility and access
  • Active teams show in staff interfaces
@push('scripts') @endpush @endsection