@extends("admin.admin_app") @section("content")

{{ isset($roomfacilities->id) ? 'Edit Room' : 'Add Room' }} Details for {{ isset($hotels->hotel_name) ? $hotels->hotel_name : null }}

@include('admin.navigation-tabs')
@if (count($errors) > 0)
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif {!! Form::open(array('url' => array('admin/hotels/addroomfacilities'),'class'=>'form-horizontal padding-15','name'=>'category_form','id'=>'category_form','role'=>'form','enctype' => 'multipart/form-data')) !!}
+
@if(isset($roomfacilities->other_service) && !empty($roomfacilities->other_service)) @php $otherService = json_decode($roomfacilities->other_service, true); @endphp @foreach($otherService['name'] as $key => $otherServ)
@endforeach @else
@endif

{!! Form::close() !!}
@endsection