@extends('backend-template') @section('breadcrumbs') {!! show_breadcrumbs(['salvosites' => url('salvosites/siteslist'), 'edit' => false]) !!} @stop @section('content')

Create a new salvosite

@include('layouts/form_errors') {!! Form::open(array('url' => '/salvosites/store', 'class' => 'form-horizontal dialog-form', 'autocomplete' => 'off')) !!} {!! Form::hidden('step', 1) !!}
{!! Form::text('name', null, ['class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::select('template', ['ss6' => "SS6 - About us text on home page", 'ss7' => "SS7 - Stock list on home page"], old('template', 'ss6'), ['class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::text('title', null, ['class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::textarea('description', null, ['class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::select('is_active', [0 => "offline", 1 => "online"], old('is_active', 1), ['class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::submit('Save', ['class' => 'btn btn-primary pull-right']) !!}
{!! Form::close() !!}
{{-- end box --}} @stop