@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::open(array('url'=>'proceso/inscripcion','class'=>'formulario')) !!}{!! csrf_field() !!}
{!! Form::text('estudiante_id', NULL , $attributes = array('class' => 'form-control mayuscula','id'=>'estudiante_id','placeholder'=>'12345678'))!!}

{!! Form::text('nom_ape', NULL , $attributes = array('class' => 'form-control data mayuscula','id'=>'nom_ape', 'disabled' => 'true'))!!}
{!! Form::select('programa_id',$vacio, NULL , $attributes = array('class' => 'form-control', 'id'=>'programa_id','required' => 'required'))!!}
{!! Form::close() !!}

Espere un momento...

Materia Sección Acciones
@stop @section('postscript') {!! Html::script('js/solonumeros.js') !!} @stop