Files
lucent-laravel/front/views/records-editor/edit.blade.php
T

25 lines
743 B
PHP
Raw Normal View History

2024-09-27 23:58:32 +03:00
@extends("lucent::layouts.channel")
@section("content")
2024-09-28 18:36:18 +03:00
@php
$createMode = $createMode ?? false;
@endphp
2024-09-27 23:58:32 +03:00
<div class="record-edit">
2024-09-28 18:36:18 +03:00
@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>
2024-09-27 23:58:32 +03:00
</div>
2024-10-02 18:58:30 +03:00
<form id="record-form">
2024-09-28 18:36:18 +03:00
@foreach($schema->fields as $field)
@include("lucent::records-editor.fields", ["field" => $field])
@endforeach
2024-10-02 18:58:30 +03:00
</form>
2024-09-27 23:58:32 +03:00
</div>
2024-10-01 22:31:07 +03:00
2024-09-27 23:58:32 +03:00
@endsection