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








Edit Record Type Form
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf @method('PUT')
@foreach ($allIndexFields as $indexField)
indexfields->contains($indexField->id) ? 'checked' : '' }}>
@endforeach
@endsection