- Added standard Laravel directory structure and configuration. - Included Svelte and Tailwind configuration for the admin interface. - Added core PHPUnit and testing scripts.
8 lines
155 B
PHP
8 lines
155 B
PHP
@extends('layouts.admin')
|
|
|
|
@section('content')
|
|
<div id="form-editor"
|
|
data-form="{{ isset($form) ? json_encode($form) : 'null' }}">
|
|
</div>
|
|
@endsection
|