@extends('admin::layouts.master') @section('content-header')

Settings

@stop @section('content')

{{ Form::open() }}
{{ Form::label('site_name', 'Site Name:') }} {{ Form::text('site_name', option('site.name'), ['class' => 'form-control']) }} {{ $errors->first('site_name', '
:message
') }}
{{ Form::label('site.slogan', 'Slogan:') }} {{ Form::text('site.slogan', option('site.slogan'), ['class' => 'form-control']) }} {{ $errors->first('site.slogan', '
:message
') }}
{{ Form::label('site.description', 'Description:') }} {{ Form::textarea('site.description', option('site.description'), ['class' => 'form-control']) }} {{ $errors->first('site.description', '
:message
') }}
{{ Form::submit('Save', ['class' => 'btn btn-primary']) }}
{{ Form::close() }}

{{ Form::open() }}
{{ Form::label('pagination.perpage', 'Pagination Per Page:') }} {{ Form::text('pagination.perpage', option('pagination.perpage'), ['class' => 'form-control']) }} {{ $errors->first('pagination.perpage', '
:message
') }}
{{ Form::submit('Save', ['class' => 'btn btn-primary']) }}
{{ Form::close() }}

{{ Form::open() }}
{{ Form::label('ckfinder.prefix', 'CKFinder Prefix Path:') }} {{ Form::text('ckfinder.prefix', option('ckfinder.prefix'), ['class' => 'form-control']) }} {{ $errors->first('ckfinder.prefix', '
:message
') }}
{{ Form::submit('Save', ['class' => 'btn btn-primary']) }}
{{ Form::close() }}

@if(defined("STDIN"))

{{ modal_popup(route('admin.reinstall'), 'Reinstall Website', 'Anda yakin ingin menginstall ulang website ini ?')}}

{{ modal_popup(route('admin.cache.clear'), 'Clear Cache', 'Anda yakin ingin menghapus cache?')}}

@else

Sorry, your server is not support artisan via interface.

@endif

{{ Form::open() }}
{{ Form::label('site.keywords', 'Keyword:') }} {{ Form::text('site.keywords', option('site.keywords'), ['class' => 'form-control']) }} {{ $errors->first('site.keywords', '
:message
') }}
{{ Form::label('post.permalink', 'Post Permalink:') }} {{ Form::text('post.permalink', option('post.permalink'), ['class' => 'form-control']) }} {{ $errors->first('post.permalink', '
:message
') }}

Permalink URL for article or page.

{{ Form::submit('Save', ['class' => 'btn btn-primary']) }}
{{ Form::close() }}

{{ Form::open() }}
{{ Form::label('facebook.link', 'Facebook Link:') }} {{ Form::text('facebook.link', option('facebook.link'), ['class' => 'form-control']) }} {{ $errors->first('facebook.link', '
:message
') }}
{{ Form::label('twitter.link', 'Twitter Link:') }} {{ Form::text('twitter.link', option('twitter.link'), ['class' => 'form-control']) }} {{ $errors->first('twitter.link', '
:message
') }}
{{ Form::submit('Save', ['class' => 'btn btn-primary']) }}
{{ Form::close() }}

{{ Form::open() }}
{{ Form::label('tracking', 'Tracking Script:') }} {{ Form::textarea('tracking', option('tracking'), ['class' => 'form-control']) }} {{ $errors->first('tracking', '
:message
') }}

To append this script just add : @{{ option('tacking') }} on your view.

{{ Form::submit('Save', ['class' => 'btn btn-primary']) }}
{{ Form::close() }}
@stop