@extends('admin/master/index') @section('content')
{!! Form::open(['files'=> true]) !!}
{!! Form::text('sitename',siteSettings('siteName'),array('class'=>'form-control')) !!}
{!! Form::text('description',siteSettings('description'),['class'=>'form-control']) !!}
{!! Form::file('fav_icon',['accept'=>'image/*']) !!}
{!! Form::textarea('tos',htmlspecialchars(siteSettings('tos')),array('class'=>'form-control ckeditor')) !!}
{!! Form::textarea('privacy',htmlspecialchars(siteSettings('privacy')),array('class'=>'form-control ckeditor')) !!}
{!! Form::textarea('faq',htmlspecialchars(siteSettings('faq')),['class'=>'form-control ckeditor']) !!}
{!! Form::textarea('about',htmlspecialchars(siteSettings('about')),['class'=>'form-control ckeditor']) !!}
{!! Form::submit('Update',['class'=>'btn btn-success']) !!} {!! Form::close() !!}
@endsection @section('extra-js') @endsection