@extends('layouts.default') @section('content')

{!!trans('english.ROLE_MANAGEMENT')!!}

{!!trans('english.CREATE_NEW_ROLE')!!}
{!! Form::open(array('role' => 'form', 'url' => 'role', 'files'=> true, 'class' => 'form-horizontal')) !!}
{!! Form::text('name', old('name'), array('id'=> 'name', 'class' => 'form-control', 'required' => 'true')) !!}
{!! Form::textarea('info', old('info'), array('id'=> 'info', 'rows' => '3', 'class' => 'form-control')) !!}
{!! Form::number('priority', old('priority'), array('id'=> 'name', 'class' => 'form-control', 'required' => 'true','min'=>1)) !!}
{!! Form::select('status_id', array('1' => 'Active', '2' => 'Inactive'), old('status_id'), array('class' => 'selectpicker form-control', 'id' => 'status-id'))!!}
{!! Form::close() !!}
@stop