@extends('layouts.admin') @section('title', $template->template_name) @section('page-title', $template->template_name) @section('content')
Garment type
{{ $template->garment_type }}
Status
{{ $template->status }}
Description
{{ $template->description ?? '-' }}
@can('edit measurements')Edit@endcan Back

Fields ({{ $template->fields->count() }})

@foreach($template->fields as $i => $f) @endforeach
#Field nameLabelTypeUnitRequired
{{ $i + 1 }}{{ $f->field_name }}{{ $f->label }}{{ $f->input_type }}{{ $f->unit ?? '-' }}{{ $f->is_required ? 'Yes' : 'No' }}
@endsection