@extends('layouts.app') @section('title', 'Edit Sign Type') @section('content')

Edit Sign Type

@csrf @method('PUT') {{-- Name Field --}}
@error('name')

{{ $message }}

@enderror
{{-- Custom Material Selection --}}

Select Materials

Selected Materials:

    @foreach ($selectedMaterials as $material)
  • {{ $material->name }} {{-- --}}
  • @endforeach
{{-- Extra Variables Section --}}
@foreach ($signType->variables as $variable)
index.name", $variable->name) }}" class="w-full border p-2 rounded" placeholder="Name" required>
index.price", $variable->price) }}" class="w-full border p-2 rounded" placeholder="Price">
index.uom", $variable->uom) }}" class="w-full border p-2 rounded" placeholder="UOM">
@endforeach

Assign Modules

@foreach ($allModules as $module) @endforeach
{{-- Buttons --}}
Cancel
{{-- JavaScript --}} @endsection