@extends('layouts.dashboard') @section('title', $binType->exists ? 'Edit bin type' : 'Add bin type') @section('content')

{{ $binType->exists ? 'Edit bin type' : 'Add bin type' }}

@if (! empty($binType->placeholder_fields))

Seeded guess — still placeholder for: {{ implode(', ', $binType->placeholder_fields) }}. Saving a field clears its flag.

@endif
@csrf @if ($binType->exists) @method('PUT') @endif
@endsection