@extends('themes.default1.admin.layout.admin') @section('Manage') active @stop @section('manage-bar') active @stop @section('url') class="active" @stop @section('HeadInclude') @stop @section('PageHeader')

{!! Lang::get('lang.url') !!}

@stop @section('breadcrumbs') @stop @section('content') {!! Form::open(['url' => 'url/settings', 'method' => 'PATCH']) !!}

URL Settings

@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('lang.alert') !!}! {!!Session::get('fails')!!}
@endif
{!! Form::label('www','WWW/non-WWW') !!}

{!! Form::radio('www','yes',$www['www'],['class'=>'option']) !!} WWW

{!! Form::radio('www','no',$www['nonwww'],['class'=>'option']) !!} Non WWW

{!! Form::label('option','SSl') !!}

{!! Form::radio('ssl','yes',$https['https'],['class'=>'option']) !!} HTTPS

{!! Form::radio('ssl','no',$https['http'],['class'=>'option']) !!} HTTP

{!! Form::close() !!} @stop