@extends('layouts/gnr_layout') @section('title', '| Configure SMS Service') @section('content') {{-- template --}}
{{-- fullbody start --}}
{{-- title --}} {{-- title end --}} {{-- panel start --}}
SMS Provider Configuration
{{-- form start --}}
{!! Form::open(array('url' => '', 'id'=>'dataForm', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!} {{-- Provider --}}
{!! Form::label('selectedProvider', 'SMS Provider :', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::select('selectedProvider', array('' => 'Select') + ($providers), null, array('class'=>'form-control', 'id' => 'selectedProvider')) !!}

{{-- Credentials --}}
{{-- Customize Field Option --}}
{!! Form::label('customizeField', 'Customize Field :', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::checkbox('customizeField', '', false,['class'=>'checkItem']) !!}
{!! Form::label('submit', ' ', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']); !!}
{!! Form::close() !!}
{{-- form end --}}
{{-- panel end --}}
{{-- fullbody end --}}
{{-- template end --}} @endsection {{-- scripts --}}