@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'); !!}