@extends('admin::_layouts.content',['selectedMenu'=>'cities']) @section('title') {!! ($item??false) ? 'Düzenle' : 'Yeni' !!} @endsection @section('content') @include('admin::_partials.tinymce')
{!! html()->model($item ?? [])->form($method,$methodURL)->open() !!} {{--{{dd($item)}}--}} {!! skey() !!}
Şehir Bilgileri
@if(config('nette-lang.enable'))
@foreach (\LaravelLocalization::getSupportedLocales() as $key => $lang)
{!! html()->label('Şehir Adı ('.$lang['native'].')')->for('name_'.$key) !!} {!! html()->text('name_'.$key)->placeholder('Şehir Adı ('.$lang['native'].')')->addClass('form-control'); !!}
{!! html()->label('Mağazalar ('. $lang['native'] .')')->for('body_'.$key) !!} {!! html()->textarea('body_'.$key)->placeholder('Mağazalar ('. $lang['native'] .')')->addClass('form-control')->data('editor', 'false') !!}
@endforeach
@else
{!! html()->label('Şehir Adı')->for('name') !!} {!! html()->text('name')->placeholder('Şehir Adı')->addClass('form-control'); !!}
{!! html()->label('Mağazalar')->for('content') !!} {!! html()->textarea('content')->placeholder('Mağazalar')->addClass('form-control')->data('editor', 'true') !!}
@endif
@include('admin::_partials.sidebar._sidebar')
{!! backbtn(url()->previous()) !!} {!! savebtn() !!}
{!! html()->form()->close() !!}
@endsection @section('foot') @endsection