{!! Form::open(['url' => '/admin/groups/'.$group->group_id,'method'=>'put']) !!}
{!! Form::label('name','Name') !!}
{!! Form::text('group_name',$group->group_name,['class' => 'form-control', 'placeholder'=> 'Name']) !!}
@if ($errors->has('group_name'))
{!! $errors->first('group_name') !!}
@endif
{!! Form::label('status','Status') !!}
{!! Form::select('group_is_exist',['1' => 'Active','0' => 'Inactive'],$group->group_is_exist,['class' =>'form-control']) !!}
@if ($errors->has('group_is_exist'))
{!! $errors->first('group_is_exist') !!}
@endif
{!! Form::close() !!}