@extends('app') @section('content')
Registrar
@if (count($errors) > 0)
Whoops! Hay algunos problemas!!!.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
{!! Form::label('idRol', 'Tipo Usuario', array('class'=>'control-label')) !!}
{!! Form::select('idRol',@$roles,@old('idRol'),array('class'=>'form-control','required')) !!}
{{$errors->first('idRol')}}
@endsection