@extends('layouts.properties_channels') @section('content') {{Form::model($propertieschannel,['action'=>['PropertiesChannelsController@postUpdate',$propertieschannel->channel_id]])}} {{Form::label('channel_id','Channel:')}} {{$channel['name']}}
{{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('Update')}} {{Form::close()}} @stop