{!! Form::open(array('url' => route('salvositeUpdate', $salvosite->id), 'class' => 'form-horizontal dialog-form', 'files' => true, 'autocomplete' => 'off')) !!} {!! Form::hidden('step', 1) !!}
{!! Form::text('name', $salvosite->name, ['class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::text('domain', $salvosite->domain, ['class' => 'form-control', 'placeholder' => 'domain.com']) !!} Please enter domain name without http(s) or www
{{-- end form-group --}}
{!! Form::text('google_analytics_id', $salvosite->google_analytics_id, ['class' => 'form-control', 'placeholder' => 'UA-000000-00']) !!}
{{-- end form-group --}}
{!! Form::select('template', ['ss6' => "SS6 - About us text on home page", 'ss7' => "SS7 - Stock list on home page"], old('template', $salvosite->template), ['class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::text('title', $salvosite->title, ['class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::textarea('description', $salvosite->description, ['id' => 'description', 'class' => 'form-control', 'rows' => 4]) !!}
{{-- end form-group --}}
{{-- end form-group --}}
{!! Form::select('is_active', [0 => "offline", 1 => "online"], $salvosite->is_active, ['class' => 'form-control']) !!}
{{-- end form-group --}} {{--
--}} {{----}} {{--
--}} {{--{!! Form::select('home_page_show', ['categories' => "Categories", 'tags' => 'Tags'], $salvosite->home_page_show,--}} {{--['class' => 'form-control']) !!}--}} {{--
--}} {{--
--}}{{-- end form-group --}}
{{-- end form-group --}}
{!! Form::text('news_link', $salvosite->news_link, ['class' => 'form-control', 'placeholder' => 'http://your-blog.com']) !!}
{{-- end form-group --}}
{{-- end form-group --}}
{{-- end form-group --}}
{{-- end form-group --}}
{{-- end form-group --}}
{!! Form::textarea('about_text', $salvosite->about_text, ['id' => 'about_text', 'class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::textarea('sidebar_text', $salvosite->sidebar_text, ['id' => 'sidebar_text', 'class' => 'form-control']) !!}
{{-- end form-group --}} {{--logo image--}}
{!! Form::file('sitelogo', null, ['class' => 'form-control']) !!} @if($salvosite->logo) @endif
{{-- end form-group --}} {{--logo image--}}
{!! Form::file('favicon', null, ['class' => 'form-control']) !!} @if($salvosite->favicon)
Delete @endif
{{-- end form-group --}} {{--background image--}}
{!! Form::file('bg_image', null, ['class' => 'form-control']) !!} @if($salvosite->bg_image) @endif
{!! Form::submit('Save site details', ['class' => 'btn btn-primary pull-right']) !!} Reset settings
{!! Form::close() !!}