@extends('layouts.performance') @php $isEdit = !empty($template); $logoUrl = null; foreach (['assets/logo.jpg', 'assets/logo.jpeg', 'assets/logo.png'] as $candidate) { if (file_exists(public_path($candidate))) { $logoUrl = asset($candidate); break; } } @endphp @section('title', $isEdit ? 'Form Şablon Düzenle' : 'Yeni Form Şablon') @push('styles') @endpush @section('perf-content')

{{ $isEdit ? 'Form Şablon Düzenle' : 'Yeni Form Şablon' }}

JSON form tanımı ile şablon oluşturun.

Geri Dön
@php $errorMsg = null; if (isset($errors)) { if (is_object($errors) && method_exists($errors, 'any') && $errors->any()) { $errorMsg = $errors->first(); } elseif (is_array($errors) && count($errors) > 0) { $errorMsg = reset($errors); } } @endphp @if ($errorMsg)
{{ $errorMsg }}
@endif
@csrf
@php $paperSize = strtoupper(trim((string) old('paper_size', $template?->paper_size ?? 'A4'))); if (!in_array($paperSize, ['A3', 'A4', 'A5'], true)) { $paperSize = 'A4'; } @endphp
Workflow Entegrasyonu
camunda_enabled ?? false) ? 'checked' : '' }}>
Adım Bazlı Onaylayıcı Atamaları
Lütfen süreç seçin...
Şablonu drag-drop ile düzenleyin.
Bu alan otomatik güncellenir.
@endsection @push('scripts') @endpush