@extends('admin::_layouts.content',['selectedMenu'=>'product_feature']) @section('title') {!! ($item??false) ? 'Düzenle' : 'Yeni' !!} @endsection @section('content') @include('admin::_partials.tinymce')
{!! html()->model($item ?? [])->form($method,$methodURL)->open() !!} {{--{{dd($item)}}--}} {!! skey() !!}
Ürün Özellikleri
@if(config('nette-lang.enable'))
@foreach (\LaravelLocalization::getSupportedLocales() as $key => $lang)
{!! html()->label('Özellik Adı ('.$lang['native'].')')->for('name_'.$key) !!} {!! html()->text('name_'.$key)->placeholder('Özellik Adı ('.$lang['native'].')')->addClass('form-control'); !!}
@endforeach
@else
{!! html()->label('Sayfa Başlığı')->for('name') !!} {!! html()->text('name')->placeholder('Sayfa Başlığı')->addClass('form-control'); !!}
{!! html()->label('İçerik')->for('content') !!} {!! html()->textarea('content')->placeholder('İçerik')->addClass('form-control')->data('editor','true') !!}
@endif
@include('admin::_partials.sidebar._sidebar')
{!! backbtn(url()->previous()) !!} {!! savebtn() !!}
{!! html()->form()->close() !!}
@endsection @section('foot') @endsection