@extends('_version_02.commons.layouts.admin') @section('content') {!! Form::model($model, ['class'=>'form-horizontal']) !!} @include('_version_02.commons.layouts.partials._alert')
{{App\Language::trans('Room Detail')}}

{!! Form::label('status', App\Language::trans('Status'), ['class'=>'control-label col-md-12']) !!}
status) == true ? ($model->status == true ? 'checked' : '') : 'checked'}}>
status) == true ? ($model->status == false ? 'checked' : '') : ''}}>
{!!$errors->first('status', '')!!}
{!! Form::label('id_house', App\Language::trans('House'), ['class'=>'control-label col-md-4']) !!}
{!! Form::select('id_house', App\UtilityKy\House::combobox(), null, ['class'=>'form-control','autofocus','required']) !!} {!!$errors->first('id_house', '')!!}
{!! Form::label('house_room_type', App\Language::trans('Room Type'), ['class'=>'control-label col-md-4']) !!}
{!! Form::select('house_room_type', App\UtilityKy\Room::combobox_room_type(), null, ['class'=>'form-control','autofocus','required']) !!} {!!$errors->first('house_room_type', '')!!}
{!! Form::label('house_room_floor', App\Language::trans('House Room Floor'), ['class'=>'control-label col-md-4']) !!}
{!! Form::text('house_room_floor', null, ['class'=>'form-control','required']) !!} {!!$errors->first('house_room_floor', '')!!}
{!! Form::label('house_room_name', App\Language::trans('Room Name'), ['class'=>'control-label col-md-4']) !!}
{!! Form::text('house_room_name', null, ['class'=>'form-control','required']) !!} {!!$errors->first('house_room_name', '')!!}
{!! Form::label('rental', App\Language::trans('Rental'), ['class'=>'control-label col-md-4']) !!}
{!! Form::number('rental', null, ['class'=>'form-control','required']) !!} {!!$errors->first('rental', '')!!}
{!! Form::label('rental_cost', App\Language::trans('Rental Cost'), ['class'=>'control-label col-md-4']) !!}
{!! Form::number('rental_cost', null, ['class'=>'form-control','required']) !!} {!!$errors->first('rental_cost', '')!!}
{{App\Language::trans('House Room Members')}}
@include('_version_02.commons.utilityKy.rooms.partials._house_room_members')
@include('_version_02.commons.layouts.partials._form_floaring_footer_standard') {!! Form::close() !!} @endsection @section('script') @endsection