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

new user

{{ Form::open(array('url' => 'user/create')) }}
{{ trans('labels.username') }} :
{{ Form::text('username', Input::old('username')) }}
{{ trans('labels.passwd') }} :
{{ Form::password('password', Input::old('password')) }}
 
{{ Form::submit('OK' , array( 'class' => 'button bn ok')) }}
{{ Form::close() }} @endsection