@extends('backend-template') @section('breadcrumbs') {!! show_breadcrumbs(['Banners' => url('profile/banner') , 'Build a banner' => false]) !!} @stop @section('content') @include('blocks.custom_fonts_style')

Add a new banner

Build a banner Upload a banner @include('layouts/form_errors') {!! Form::open(array('url' => 'profile/banner', 'class' => 'form-horizontal dialog-form', 'autocomplete' => 'off')) !!} {!! Form::hidden('ftype', 'build') !!} @include('profile.banner._banner_main_block')
Top part of the banner
{!! Form::text('top_text_1', null, ['id' => "top_text_1", 'class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::text('top_text_2', null, ['id' => "top_text_2", 'class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::text('top_text_color', "#333333", ['id' => 'top_text_color', 'class' => 'form-control colorpicker', 'placeholder' => "#333333"]) !!}
{{-- end form-group --}}
{!! Form::text('top_bg_color', "#fefefe", ['id' => 'top_bg_color', 'class' => 'form-control colorpicker', 'placeholder' => "#fefefe"]) !!}
{{-- end form-group --}}
{!! Form::text('top_text_size', 20, ['id' => "top_text_size", 'class' => 'form-control']) !!}
{{-- end form-group --}}
@include('blocks.custom_fonts_block', ['font_for' => 'top_text_font'])
{{-- end form-group --}}
Bottom part of the banner
{!! Form::text('bottom_text_1', null, ['id' => "bottom_text_1", 'class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::text('bottom_text_2', null, ['id' => "bottom_text_2", 'class' => 'form-control']) !!}
{{-- end form-group --}}
{!! Form::text('bottom_text_color', "#333333", ['id' => "bottom_text_color", 'class' => 'form-control colorpicker', 'placeholder' => "#333333"]) !!}
{{-- end form-group --}}
{!! Form::text('bottom_bg_color', "#fefefe", ['id' => 'bottom_bg_color', 'class' => 'form-control colorpicker', 'placeholder' => "#fefefe"]) !!}
{{-- end form-group --}}
{!! Form::text('bottom_text_size', 15, ['id' => "bottom_text_size", 'class' => 'form-control']) !!}
{{-- end form-group --}}
@include('blocks.custom_fonts_block', ['font_for' => 'bottom_text_font'])
{{-- end form-group --}}

{!! Form::submit('Save banner', ['class' => 'btn btn-primary pull-right']) !!}
{{-- end form-group --}} {!! Form::close() !!}
@stop