@if(Session::has('success'))
Success {{Session::get('success')}}
@endif @if(Session::has('fails'))
Fail! {{Session::get('fails')}}
@endif
{!! Form::label('name',Lang::get('lang.name')) !!} {!! $errors->first('name', ':message') !!} {!! Form::text('name',null,['class' => 'form-control']) !!}
{!! Form::label('status',Lang::get('lang.status')) !!} {!! $errors->first('status', ':message') !!}
{!! Form::radio('status','1',true) !!}{!! Lang::get('lang.active') !!}
{!! Form::radio('status','0',null) !!}{!! Lang::get('lang.inactive') !!}
{!! Form::label('description',Lang::get('lang.description')) !!} {!! $errors->first('description', ':message') !!} {!! Form::textarea('description',null,['class' => 'form-control','size' => '50x10','id'=>'myNicEditor','placeholder'=>Lang::get('lang.enter_the_description')]) !!}