@extends('themes.default1.admin.layout.admin') @section('content')

{{Lang::get('storage::lang.settings')}}

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

@if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('success'))
{{Session::get('success')}}
@endif @if(Session::has('fails'))
{{Lang::get('message.alert')}}! {{Lang::get('message.failed')}}. {{Session::get('fails')}}
@endif {!! Form::open(['url'=>'storage','method'=>'post']) !!}
{!! Form::label('default',Lang::get('storage::lang.default')) !!} {!! Form::select('default',['database'=>'Database','local'=>'Local'],$default,['class'=>'form-control']) !!}
@stop @section('FooterInclude') @stop