@extends('layouts.properties_channels') @section('content') {{Form::open(array('action'=>'PropertiesChannelsController@postStore'))}} {{Form::label('channel_id','Channel:')}} {{Form::select('channel_id',$channels)}} {{$errors->first('channel_id')}}
{{Form::label('login','Login:')}} {{Form::text('login')}} {{$errors->first('login')}}
{{Form::label('password','Password:')}} {{Form::text('password')}} {{$errors->first('password')}}
{{Form::label('hotel_code','Hotel Code:')}} {{Form::text('hotel_code')}} {{$errors->first('hotel_code')}}
{{Form::submit('Add')}} {{Form::close()}} @stop