{{-- Name: user.partials.editForm Author: JH2 Created: 2015-09-22 --}} @extends('partials.box') @section($content_id) {!! Form::model($setting, ['route' => ['admin.system.settings.update', $setting->id], 'method' => 'put', 'class' => 'form-horizontal']) !!}
{!! Form::label('value', Lang::get('systemsetting.form.value'), ['class' => 'col-md-3 control-label']) !!}
{!! Form::text('value', old('value'), ['class' => 'form-control']) !!} {!! $errors->first('value', ':message') !!}
{!! Form::submit(Lang::get('systemsetting.form.save'), ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!} @stop