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

Vendor Profiling

@include('includes.errors') @include('includes.success')

Vendor Active

@if(count($active_vendor)) @foreach($active_vendor as $index=>$active) @endforeach @endif
Vendors
{{Form::checkbox("AccountID[]" , $index ) }}
{{$active}}

Vendor DeActive

@if(count($inactive_vendor)) @foreach($inactive_vendor as $index=>$active) @endforeach @endif
Vendors
{{Form::checkbox("AccountID[]" , $index ) }}
{{$active}}

Block by Country
{{ Form::select('Country', $countries, '' , array("class"=>"select2","multiple")) }}
{{ Form::select('Trunk', $trunks, $trunk_keys, array("class"=>"select2")) }}
{{ Form::select('Timezones', $Timezones, '', array("class"=>"select2")) }}
Block by Code
{{ Form::select('Country', $countriesCode, '' , array("class"=>"select2","multiple")) }}
{{ Form::select('Trunk', $trunks, $trunk_keys, array("class"=>"select2")) }}
{{ Form::select('Timezones', $Timezones, '', array("class"=>"select2")) }}

Code
@stop @section('footer_ext') @parent @stop