25 lines
776 B
PHP
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
|
|
|