@extends('layouts.web-admin.main') @section('page_title', 'Users') @section('page_action', 'View Data') @section('menu_active_users',' active ') @section('submenu_active_user',' active ') @section('page_nav')
  • Users
  • Show Data
  • @stop @section('page_style') @stop @section('content')
    {!! Form::model($users, ['class'=>"form-horizontal"]) !!}
    {!! Form::label("group", "Group", ['class' => 'col-sm-2 control-label','for'=>'username']) !!}
    {!! Form::label("username", "Username", ['class' => 'col-sm-2 control-label','for'=>'title']) !!}
    {!! Form::text("username", null, ['class' => 'form-control','placeholder'=>"","disabled"=>true]) !!}
    {!! Form::label("name", "Name", ['class' => 'col-sm-2 control-label','for'=>'detail']) !!}
    {!! Form::text("name", null, ['class' => 'form-control','placeholder'=>"","disabled"=>true]) !!}
    {!! Form::label("email", "Email", ['class' => 'col-sm-2 control-label','for'=>'detail']) !!}
    {!! Form::text("email", null, ['class' => 'form-control','placeholder'=>"","disabled"=>true]) !!}
    {!! Form::label("status", "Status", ['class' => 'col-sm-2 control-label','for'=>'status']) !!}
    @if (isset($users->status)) @if ($users->status=="Y") {!! Form::checkbox('status', 'Y', true, ['data-render' => 'switchery','data-theme'=>'primary','data-disabled'=>'true']); !!} @else {!! Form::checkbox('status', 'Y', false, ['data-render' => 'switchery','data-theme'=>'primary','data-disabled'=>'true']); !!} @endif @else {!! Form::checkbox('status', 'Y', true, ['data-render' => 'switchery','data-theme'=>'primary','data-disabled'=>'true']); !!} @endif
    {!! Form::close() !!}
    @stop @section('page_script') @stop