@extends('layouts.admin') @section('header', 'Manage Tiers for ' . $client->name) @section('content')
@csrf

Available Tiers

Select the tiers to assign to this client

@if($tiers->count() > 0)
@foreach($tiers as $tier)
id, $clientTiers) ? 'checked' : '' }} class="tier-checkbox w-4 h-4 text-blue-600 bg-gray-100 border-gray-300 rounded focus:ring-blue-500 dark:focus:ring-blue-600 dark:ring-offset-gray-800 dark:focus:ring-offset-gray-800 focus:ring-2 dark:bg-gray-700 dark:border-gray-600">
@if($tier->description)
{!! $tier->description !!}
@endif

Level: {{ $tier->level }}

@endforeach
@else

No tiers available. Please create tiers first.

@endif
Cancel
@push('scripts') @endpush @endsection