{!! Form::label('hostels_id', 'Hostels', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('hostels_id',$data['hostels'], null, ["class" => "form-control border-form upper","required"]) !!} @include('includes.form_fields_validation_message', ['name' => 'hostels_id'])
{!! Form::label('days_id', 'Day', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('days_id',$data['days'], null, ["class" => "form-control border-form upper","required"]) !!} @include('includes.form_fields_validation_message', ['name' => 'days_id'])
{!! Form::label('eating_times_id', 'Time', ['class' => 'col-sm-4 control-label']) !!}
{!! Form::select('eating_times_id',$data['eating_times'], null, ["class" => "form-control border-form upper","required"]) !!} @include('includes.form_fields_validation_message', ['name' => 'eating_times_id'])
{!! Form::label('food_items', 'Find Food Item & Add', ['class' => 'col-sm-12 control-label align-center']) !!}
{!! Form::select('food_items', [], null, ["placeholder" => "Type Food Name...", "class" => "col-xs-12 col-sm-12", "style" => "width: 100%;"]) !!} @include('includes.form_fields_validation_message', ['name' => 'food_items'])
@include($view_path.'.includes.food')