@extends ('layouts.diseƱo') @section ('contenido')

PROGRAMAS

Asignar Programas
{{ csrf_field() }}
{!!Form:: open(array('url'=>'nucleo', 'method'=>'POST', 'autocomplete'=> 'off')) !!}
{!!Form::label('Institutos/Extensiones')!!}
{{ Form::select('Institutos_id', $sedes, null, ['class'=>'form-control','id'=>'sede', 'placeholder' => '.:Seleccione:.']) }} @if ($errors->has('Institutos_id')) {{ $errors->first('Institutos_id') }} @endif
{!!Form::label('Programas')!!}
{{ Form::select('Programas_id', $programas, null, ['class'=>'form-control','id'=>'programa','placeholder' => '.:Seleccione:.']) }} @if ($errors->has('Programas_id')) {{ $errors->first('Programas_id') }} @endif
{!!Form::label('Sub-Programa')!!}
@if ($errors->has('Especialidad_id')) {{ $errors->first('Especialidad_id') }} @endif
{!!Form::label('Periodo')!!}
{{ Form::select('Periodo_id', $per, null, ['class'=>'form-control','placeholder' => '.:Seleccione:.']) }} @if ($errors->has('Periodo_id')) {{ $errors->first('Periodo_id') }} @endif
{!!Form::label(' Vigente')!!}
{{ Form::select('Vigente', array('Vigente' => 'Vigente', 'No Vigente' => 'No Vigente'), null, ['class'=>'form-control','placeholder' => '.:Seleccione:.']) }} @if ($errors->has('Vigente')) {{ $errors->first('Vigente') }} @endif
{!!Form::submit('GUARDAR', ['class' => 'btn btn-primary'])!!} CANCELAR
{!!Form::close()!!}
@endsection @section ('scripts') @endsection