@extends('layouts.admin') @section('heading', 'Garments') @section('subheading', 'Choose which garments your shop offers, then build the measurement form for each.') @section('content') @include('partials.master-tabs') @if (session('status'))
{{ session('status') }}
@endif @if ($errors->any())
{{ $errors->first() }}
@endif
@foreach($garmentTypes as $type)

{{ $type->name }} @if($type->name_ta) / {{ $type->name_ta }} @endif

@if($type->is_custom) Custom to your shop @endif
@csrf
@if($type->is_offered) Build measurement form → @else

Turn this on to configure its measurements.

@endif
@endforeach

Create a custom garment for your shop

@csrf

This garment will only be visible to your shop, not other shops on eTailorz.

@endsection