@extends('layouts.rooms')
@section('content')
{{Form::model($room,['action'=>['RoomsController@postMap']])}}
{{$errors->first('room_id')}}
{{Form::hidden('room_id',$room->id)}}
{{Form::hidden('channel_id',$channelId)}}
{{Form::label('name','Room name:')}} {{{$room->name}}}
{{Form::label('code','Channel Inventory Code:')}}
{{Form::select('code',[''=>'Unmapped']+$inventoryList,($mapping)?$mapping->inventory_code:'')}}
{{Form::label('code','Inventory Plan:')}}
{{$errors->first('plans')}}