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

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

@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/addroom'),'class'=>'form-horizontal padding-15','name'=>'category_form','id'=>'category_form','role'=>'form','enctype' => 'multipart/form-data')) !!}
Room Type AC Room Non-AC Room Heated Room
Total Number of Room(s)
Single Rooms
Twin Rooms
Double Rooms
Triple Rooms
Suites/Apartments/Villas
Inter Connecting
Physically Challenged
Check In Hours
Check Out Hours
{!! Form::close() !!}
@endsection