{!! Form::model($stations,['method' => 'POST','route' => ['franchisestations.change-status',$stations] ,'class' => 'user-change-status-form','id' => 'employee-change-status-form','data-form-table' => 'employee_table']) !!}
{!! Form::select('status', [
'active' => 'Active',
'banned' => 'Banned',
'under_maintained'=>'Under Maintained',
'upcomming'=>'Upcomming'],$stations->status,['class'=>'form-control input-xlarge select2me','placeholder'=>trans('messages.select_one')])!!}
{!! Form::close() !!}