{!! Form::label('NombrePeriodo', 'Cohorte') !!}
{!! Form::text('NombrePeriodo', null, [
'class' => 'form-control',
'placeholder' => 'Ej: 2024-I o 2024-II',
'id' => 'corte',
'title' => 'Formato: AÑO-I o AÑO-II',
]) !!}
@if ($errors->has('NombrePeriodo'))
{{ $errors->first('NombrePeriodo') }}
@endif
{!! Form::label('Lapso', 'Período') !!}
{!! Form::text('Lapso', null, [
'class' => 'form-control',
'id' => 'periodo',
'placeholder' => 'Ej: 2024-I o 2024-II',
'title' => 'Formato: AÑO-I o AÑO-II',
]) !!}
@if ($errors->has('Lapso'))
{{ $errors->first('Lapso') }}
@endif
{!! Form::label(' Estatus') !!}
{{ Form::select('Vigente', ['1' => 'Activo', '0' => 'Inactivo'], null, ['class' => 'form-control', 'placeholder' => '.:Seleccione:.']) }}
@if ($errors->has('Vigente'))
{{ $errors->first('Vigente') }}
@endif