@extends('admin::_layouts.content',['selectedMenu'=>'sauce_category']) @section('title') {!! ($item??false) ? 'Düzenle' : 'Yeni' !!} @endsection @section('content') @include('admin::_partials.tinymce')
{!! html()->model($item ?? [])->form($method,$methodURL)->open() !!} {{--{{dd($item)}}--}} {!! skey() !!}
Sos Kategori Bilgileri
@if(config('nette-lang.enable'))
@foreach (\LaravelLocalization::getSupportedLocales() as $key => $lang)
{!! html()->label('Sayfa Başlığı ('.$lang['native'].')')->for('name_'.$key) !!} {!! html()->text('name_'.$key)->placeholder('Sayfa Başlığı ('.$lang['native'].')')->addClass('form-control'); !!}
{!! html()->label('Kısa İçerik ('. $lang['native'] .')')->for('short_content_'.$key) !!} {!! html()->textarea('short_content_'.$key)->placeholder('Kısa İçerik ('. $lang['native'] .')')->addClass('form-control')->data('editor','true') !!}
{!! html()->label('İçerik ('. $lang['native'] .')')->for('content_'.$key) !!} {!! html()->textarea('content_'.$key)->placeholder('İçerik ('. $lang['native'] .')')->addClass('form-control')->data('editor','true') !!}
{!! html()->label('Uzun İçerik ('. $lang['native'] .')')->for('long_content_'.$key) !!} {!! html()->textarea('long_content_'.$key)->placeholder('Uzun İçerik ('. $lang['native'] .')')->addClass('form-control')->data('editor','true') !!}
@endforeach
{!! html()->label('Özel Stillendirme')->for('style') !!} {!! html()->text('style')->placeholder('Özel Stillendirme')->addClass('form-control'); !!}
@else
{!! html()->label('Sayfa Başlığı')->for('name') !!} {!! html()->text('name')->placeholder('Sayfa Başlığı')->addClass('form-control'); !!}
@endif
@include('admin::_partials.meta')
@include('admin::_partials.sidebar._sidebar')
{!! backbtn(url()->previous()) !!} {!! savebtn() !!}
{!! html()->form()->close() !!}
@endsection