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

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

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