@extends('layouts.master') @section('scripts') {{ HTML::script('js/bulk/bulk.js') }} @stop @section('content') {{Form::open(['id'=>'bulk_form','class'=>'form-horizontal'])}}

{{--
--}} {{----}} {{--

--}} {{----}} {{----}} {{--

--}} {{--
--}} {{----}} {{--
--}} {{--
--}} {{----}} {{--
--}} {{--
--}}

@foreach ($rooms as $room)
@include('bulk.children',['currentRoom'=>$room])
@endforeach
{{Form::label('rate','Single Use Rate Per Night:',['class'=>'control-label'])}}
{{Form::text('single_rate',null,['class'=>'form-control'])}}
* an empty field will leave values unchanged
{{Form::label('rate','Room Rate Per Night:',['class'=>'control-label'])}}
{{Form::text('rate',null,['class'=>'form-control'])}}

{{Form::close()}} @stop