@extends('layouts.master') @section('css') @stop @section('content') @if(Session::has('message_error'))
{!! Session::get('message_error') !!}
@endif @if(Session::has('message_success'))
{!! Session::get('message_success') !!}
@endif
{!! Form::text('estudiante_id', NULL , $attributes = array('class' => 'form-control mayuscula','id'=>'estudiante_id','placeholder'=>'12345678'))!!}
{!! Form::select('nivel_id',$vacio, NULL , $attributes = array('class' => 'form-control', 'id'=>'nivel_id','required' => 'required'))!!}
Documentos
@stop @section('postscript') {!! Html::script('js/solonumeros.js') !!} @stop