{!! Form::open(['url' => action('Restaurant\TableController@store'), 'method' => 'post', 'id' => 'table_add_form' ]) !!}

@lang( 'restaurant.add_table' )

@if(count($business_locations) == 1) @php $default_location = current(array_keys($business_locations->toArray())) @endphp @else @php $default_location = null; @endphp @endif
{!! Form::label('location_id', __('purchase.business_location').':*') !!} {!! Form::select('location_id', $business_locations, $default_location, ['class' => 'form-control select2', 'placeholder' => __('messages.please_select'), 'required']); !!}
{!! Form::label('name', 'Nome da mesa' . ':*') !!} {!! Form::text('name', null, ['class' => 'form-control', 'required', 'placeholder' => __( 'Nome da mesa' ) ]); !!}
{!! Form::label('description', 'Descrição breve' . ':') !!} {!! Form::text('description', null, ['class' => 'form-control','placeholder' => __( 'Descrição breve' )]); !!}
{!! Form::close() !!}