{!! Form::text('table_number', null, ['class' => 'form-control' , 'placeholder' => trans('dashboard.coffe_table.table_number')]) !!}
{!! Form::text('number_of_persons', null , ['class' => "touchspin" ]) !!}
{!! Form::select("country_id",$countries, isset($coffe_table) ? optional(@$coffe_table->branch->city)->country_id : null, ['class' => 'select2 form-control' , 'placeholder' => trans('dashboard.country.country') , 'onchange' => 'getCities(this.value)']) !!}
@if (isset($coffe_table) && isset($cities))
{!! Form::select("city_id",$cities, @$coffe_table->branch->city_id, ['class' => 'select2 form-control' , 'onchange' => 'getBranches(this.value)' , 'placeholder' => trans('dashboard.city.city')]) !!}
@endif
@if (isset($coffe_table) && isset($branches))
{!! Form::select("branch_id",$branches, @$coffe_table->branch->country_id, ['class' => 'select2 form-control' , 'placeholder' => trans('dashboard.branch.branch')]) !!}
@endif
@section('vendor_styles') @endsection @section('page_styles') @endsection @section('vendor_scripts') @endsection @section('page_scripts') @endsection