@extends('themes.default1.admin.layout.admin') @section('Manage') class="nav-link active" @stop @section('manage-menu-parent') class="nav-item menu-open" @stop @section('manage-menu-open') class="nav nav-treeview menu-open" @stop @section('url') class="nav-link active" @stop @section('HeadInclude') @stop @section('PageHeader')

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

@stop @section('breadcrumbs') @stop @section('content') {!! Form::open(['url' => 'url/settings', 'method' => 'PATCH']) !!} @if (count($errors) > 0)
{{Lang::get('lang.woops')}} {{Lang::get('lang.theirisproblem')}}

@endif @if(Session::has('success'))
{!!Session::get('success')!!}
@endif @if(Session::has('fails'))
{!! Lang::get('lang.alert') !!}! {!!Session::get('fails')!!}
@endif

URL {{trans('lang.settings')}}

{!! 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