@extends('backend-template') @section('content')

Create a new rectangular tile item

@include('layouts/form_errors') {!! Form::open(array( 'url' => 'admin/home-page/rectangular-tile/create', 'class' => 'form-horizontal dialog-form', 'autocomplete' => 'off', 'files' => true)) !!}
{!! Form::text('admin_label', null, ['class' => 'form-control']) !!}
{!! Form::text('heading', null, ['class' => 'form-control']) !!}
{!! Form::text('item_id', null, ['class' => 'form-control']) !!}
{!! Form::text('custom_url', null, ['class' => 'form-control']) !!} If custom url is set it will override link to item listing page
{!! Form::file('image') !!} If image is not uploaded item main image will be used
{!! Form::text('sequence_number', null, ['class' => 'form-control']) !!} Use it for ordering rectangular tile items

{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@stop