@extends('admin/master/index') @section('content')
{!! Form::open() !!}
{!! Form::label('settings_cache', 'Clear Config Cache') !!} {!! Form::checkbox('settings_cache') !!}
{!! Form::label('template_cache', 'Clear Template Cache') !!} {!! Form::checkbox('template_cache') !!}
{!! Form::label('route_cache', 'Clear Routes cache and optimize it') !!} {!! Form::checkbox('route_cache') !!}
{!! Form::submit('Update',array('class'=>'btn btn-success')) !!}
{!! Form::close() !!}
@endsection