@extends('backend-template') @section('breadcrumbs') {!! show_breadcrumbs(['Banners' => url('profile/banner') , 'Create a booking for banner' => false]) !!} @stop @section('content')

Create a booking

@include('blocks.banner-image')
@include('layouts/form_errors') {!! Form::open(array( 'url' => 'profile/booking/store', 'class' => 'form-horizontal dialog-form', 'autocomplete' => 'off')) !!}
{!! Form::select('ad_cat', $adsCats, 1, ['id' => 'ad_cat', 'class' => 'form-control js_item_cats_by_ads_cats']) !!}
{!! Form::select('item_cat', [null => 'All'], null, ['id' => 'item_cat', 'class' => 'form-control']) !!}
@include('blocks.selectbox-countries', [ 'countries' => $countries, 'name' => 'sel_country', 'placeholder' => 'All Countries' ])
{!! Form::close() !!}

@stop @section('js_files') @stop @section('css_files') @stop @section('js_functions') my_main.get_regions(); my_main.get_item_cats_by_ads_cats(); my_main.dataRange({{ $banner->id }}); @stop