@extends('admin.layout') @section('content')

{{ trans('Update Channel Provider') }}

@if( count((array) $errors) > 0) @foreach($errors->all() as $error) @endforeach @endif
{{ csrf_field() }}
{!! Form::text('chnannel_id', $result['channelProviderData']->chnannel_id, array('class'=>'form-control', 'id'=>'chnannel_id', 'required'=>'required', 'minlength'=>'1', 'maxlength'=>'4')) !!}
{!! Form::text('chnannel_name', $result['channelProviderData']->chnannel_name, array('class'=>'form-control', 'id'=>'chnannel_name', 'required'=>'required')) !!}
{!! Form::text('chnannel_provider', $result['channelProviderData']->chnannel_provider, array('class'=>'form-control', 'id'=>'chnannel_provider', 'required'=>'required')) !!}
{!! Form::text('chnannel_comments', $result['channelProviderData']->channel_comments, array('class'=>'form-control', 'id'=>'chnannel_comments')) !!}
{!! Form::text('channel_language', $result['channelProviderData']->channel_language, array('class'=>'form-control', 'id'=>'channel_language')) !!}
Back
@endsection