@extends('themes.default1.admin.layout.kb') @section('widget') active @stop @section('side1') class="active" @stop @section('content') {!! Form::model($side,['url' => 'side1/'.$side->id, 'method' => 'PATCH','files'=>true]) !!}
@if(Session::has('success'))
{{Session::get('success')}}
@endif @if(Session::has('fails'))
{{Session::get('fails')}}
@endif

{{Lang::get('lang.sidewidget1')}}

{!! Form::submit(Lang::get('lang.save'),['class'=>'form-group btn btn-primary pull-right'])!!}
{!! Form::label('title',Lang::get('lang.title')) !!} {!! $errors->first('title', ':message') !!} {!! Form::text('title',null,['class' => 'form-control']) !!}
{!! Form::label('content',Lang::get('lang.content')) !!} {!! $errors->first('content', ':message') !!} {!! Form::textarea('content',null,['class' => 'form-control','size' => '128x10','id'=>'footer','placeholder'=>'Enter the description']) !!}
@stop @section('FooterInclude') @stop