schneespur/release/schneespur-1.0.2/resources/views/admin/customer_objects/create.blade.php
Michael 7288b93500 Release v1.0.2: diagnostic infrastructure core
Add neutral diagnostic framework for future reporting modules:
- DiagnosticReporterInterface, Registry, Manager, PayloadSanitizer
- Laravel exception hook in bootstrap/app.php
- Module permission declarations (requires_permissions in module.json)
- Core diagnostic report points (module boot/install/update failures)
- Module documentation update (moduldoku.md)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-05-18 16:54:11 +00:00

24 lines
1.1 KiB
PHP

<x-admin-layout>
<x-slot name="header">{{ __('customer_object.page_create') }}</x-slot>
<x-breadcrumb :items="[
['label' => __('admin.nav_customers'), 'url' => route('admin.customers.index')],
['label' => $customer->name, 'url' => route('admin.customers.objects.index', $customer)],
['label' => __('customer_object.page_create')],
]" />
<div class="mt-6 bg-white overflow-hidden shadow-sm rounded-lg p-6">
<x-page-header :title="__('customer_object.page_create')" />
<form method="POST" action="{{ route('admin.customers.objects.store', $customer) }}" class="mt-6">
@csrf
@include('admin.customer_objects._form', ['object' => new \App\Models\CustomerObject])
<div class="mt-6 flex items-center gap-4">
<x-primary-button>{{ __('ui.button_create') }}</x-primary-button>
<a href="{{ route('admin.customers.objects.index', $customer) }}" class="text-sm text-gray-600 hover:text-gray-900">{{ __('ui.button_cancel') }}</a>
</div>
</form>
</div>
</x-admin-layout>