@extends('layouts.admin') @section('heading', $addon->exists ? 'Edit addon' : 'New addon') @section('subheading', 'Set the name and price staff will see when adding this to a garment.') @section('content')
@csrf @if($addon->exists) @method('PUT') @endif @if ($errors->any())
{{ $errors->first() }}
@endif
@if($garmentTypes->isEmpty())

No garments offered yet — turn some on first.

@else
@foreach($garmentTypes as $type) @endforeach
@endif
is_active ?? true) ? 'checked' : '' }} style="accent-color:#C2185B;">
Cancel
@endsection