Files
lucent-laravel/front/views/records-editor/edit.blade.php
T
2024-10-03 21:17:52 +03:00

25 lines
776 B
PHP

@extends("lucent::layouts.channel")
@section("content")
@php
$createMode = $createMode ?? false;
@endphp
<div class="record-edit">
@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>
<form id="record-form" data-record-id="{{$record->id}}">
@foreach($schema->fields as $field)
@include("lucent::records-editor.fields", ["field" => $field])
@endforeach
</form>
</div>
@endsection