@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') !!}
@else
{!!Form::open(array('url' => 'administrativo/solvenciadmi', 'method' => 'GET'))!!}{!! csrf_field() !!}
{!! Form::text('cedula', NULL , $attributes = array('class' => 'form-control', 'id'=>'estudiante_id','placeholder' => 'Nro. de Identificación (*)')) !!}
@if($errors->has('id')) {!! $errors->first('id') !!} @else {!! " " !!} @endif
{!!Form::close()!!}
@endif @stop