firstcommit
This commit is contained in:
29
Modules/Setting/resources/views/create.blade.php
Normal file
29
Modules/Setting/resources/views/create.blade.php
Normal file
@@ -0,0 +1,29 @@
|
||||
@extends('admin::layouts.master')
|
||||
|
||||
@section('title')
|
||||
Setting
|
||||
@endsection
|
||||
|
||||
@section('breadcrumb')
|
||||
@php
|
||||
$breadcrumbData = [
|
||||
[
|
||||
'title' => 'Setting',
|
||||
'link' => null,
|
||||
],
|
||||
[
|
||||
'title' => 'General',
|
||||
'link' => null,
|
||||
],
|
||||
];
|
||||
@endphp
|
||||
@include('admin::layouts.partials.breadcrumb', $breadcrumbData)
|
||||
@endsection
|
||||
|
||||
@section('content')
|
||||
<div class="content-wrapper container-xxl p-0">
|
||||
<div class="content-body">
|
||||
@include('setting::partial.form')
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
Reference in New Issue
Block a user