17 lines
555 B
PHP
17 lines
555 B
PHP
|
|
@extends('layouts.admin')
|
||
|
|
|
||
|
|
@section('content')
|
||
|
|
<div id="app"
|
||
|
|
data-component="UserEditor"
|
||
|
|
data-user_data="{{ json_encode($user_data) }}"
|
||
|
|
data-roles="{{ json_encode($roles) }}"
|
||
|
|
data-admin-path="{{ config('app.admin_path', 'loom') }}"
|
||
|
|
data-status="{{ $status }}"
|
||
|
|
data-errors="{{ json_encode($errors) }}">
|
||
|
|
<!-- Svelte will mount here -->
|
||
|
|
<div class="ui active inverted dimmer">
|
||
|
|
<div class="ui text loader">Loading User Editor...</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
@endsection
|