@extends('admin/layouts/Adminlayout') {{-- Page Title --}} @section('pagetitle')

Users

@endsection {{-- Page content --}} @section('content')
Add State
{{ Form::open(array('action' => 'AreaCodeController@stateBulkActions','method'=>'post','class'=>'confirm')) }}
{{ Form::hidden('action') }}
@foreach($state_list_arr as $key=>$value) @if($state_list_status[$key] == 'Active') @endif @endforeach
{{ Form::checkbox('check_cols', '1', false, array('class' => 'check_cols form-control','id'=>'check_cols')) }} S.No State Name Status Manage Area Code Action
{{ Form::checkbox('state_id[]', $key, null, array('class' => 'check_rows form-control')) }} {{ ($i++) }} {{ $value}}{{ $state_list_status[$key] }} Add / Edit AreaCode  Edit  Delete
{{ Form::close() }}