@extends('backend-template')
@section('breadcrumbs')
{!! show_breadcrumbs(['Buttons' => url('profile/button') , 'Create a booking for button' => false]) !!}
@stop
@section('content')
@include('layouts.form_errors')
{!! Form::open(array( 'url' => 'profile/buttonbooking/' . $button_id . '/store',
'class' => 'dialog-form',
'autocomplete' => 'off')) !!}
{!! Form::select('ad_cat', $adsCats, null,
['id' => 'category_id',
'class' => 'form-control']) !!}
{!! Form::select('location',
config('main.locations'),
'local', ['id' => 'location', 'class' => 'form-control']) !!}
@include('blocks.selectbox-countries', [
'countries' => $countries,
'name' => 'sel_country',
'placeholder' => 'All Countries'
])
{!! Form::submit('Book now', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
Button Bookings
@include('profile.buttons._button_bookings')
@stop
@section('js_files')
{{----}}
@stop
@section('js_functions')
my_main.button_location_actions();
my_main.get_regions();
@stop