@extends('admin.template.master') @section('stylesheets') {!! Html::style('assets/admin/bower_components/select2/dist/css/select2.min.css') !!} {!! Html::style('assets/admin/plugins/treeview/treeview.css') !!} @endsection @section('title') Glossary Create Home Glossary Create @endsection @section('main-content') @if(Session::has('message')) × {{Session('message')}} @endif Back @csrf Basic Settings SEO {{--Basic Settings--}} Name Details {{$glossary->description}} Thumbnail (If any) @if($glossary->thumbnail) @endif Category {{-- --}} Select Category @foreach ($categories as $category) category_id == $category->category_id ? 'selected' : ''}}>{{$category->category_name}} @endforeach Related {{-- --}} Select glossary @foreach ($glossaries as $glo) id, $related_gloassaries)) ? 'selected' : '' }}>{{$glo->name}} @endforeach Slug {{-- {{dd($glossary)}} --}} Status Select Status is_active == 1 ? 'selected' : ''}}>Active is_active == 0 ? 'selected' : ''}}>Inactive Meta Title Meta Keyword {{$glossary->glossary_meta_keyword}} Meta Description {{$glossary->glossary_meta_description}} Submit @endsection @section('javascripts') {!! Html::script('assets/admin/bower_components/ckeditor/ckeditor.js') !!} {!! Html::script('assets/admin/bower_components/select2/dist/js/select2.full.min.js') !!} {{--{!! Html::script('assets/admin/plugins/treeview/treeview.js') !!}--}} {{-- --}} @endsection