wip file field

This commit is contained in:
2024-09-28 18:36:18 +03:00
parent 5ed57838fc
commit 39e7a3aed4
25 changed files with 674 additions and 44 deletions
+13 -7
View File
@@ -1,16 +1,22 @@
@extends("lucent::layouts.channel")
@section("content")
@php
$createMode = $createMode ?? false;
@endphp
<div class="record-edit">
<div class="tools-header">
@include("lucent::records-editor.header")
{{-- <EditHeader {schema} bind:record {isCreateMode} bind:activeContentTab/>--}}
@include("lucent::records-editor.header")
@include("lucent::records-editor.title")
<x-lucent::notice title="Submission Errors">
asfasf
</x-lucent::notice>
<div class=" mt-4" style="margin-bottom:150px;position:relative;">
<x-lucent::tabs :schema="$schema" :createMode="$createMode"></x-lucent::tabs>
</div>
@foreach($schema->fields as $field)
@include("lucent::records-editor.fields", ["field" => $field])
@endforeach
</div>
@endsection