@extends('admin.layout.app') @section('title',' User Privilege') @push('headerscript') @endpush @section('content')

User Privilege

{!! Form::open(['route'=>array('user-privilege.store'), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'post']) !!}
{!! Form::select("user_id", [''=>'Select User']+$users, old("user_id"), ['class'=>'form-control' ,'id' => 'user_id','required'=>'required'] ) !!}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush