@if ($errors->has('curso')) {{ $errors->first('curso') }} @endif
@if ($errors->has('docente_id')) {{ $errors->first('docente_id') }} @endif
@if ($errors->has('hora_inicio')) {{ $errors->first('hora_inicio') }} @endif
@if ($errors->has('hora_fin')) {{ $errors->first('hora_fin') }} @endif
@if ($errors->has('fecha_inicio')) {{ $errors->first('fecha_inicio') }} @endif
@if ($errors->has('fecha_fin')) {{ $errors->first('fecha_fin') }} @endif
@if ($errors->has('lugar')) {{ $errors->first('lugar') }} @endif
@if ($errors->has('direccion')) {{ $errors->first('direccion') }} @endif
{{--
{!! Form::label('lugar_curso', 'Lugar Curso:') !!} {!! Form::text('lugar_curso', null, ['class' => 'form-control']) !!}
{!! Form::label('direccion', 'Direccion:') !!} {!! Form::text('direccion', null, ['class' => 'form-control']) !!}
{!! Form::label('hora_inicio', 'Hora Inicio:') !!} {!! Form::text('hora_inicio', null, ['class' => 'form-control']) !!}
{!! Form::label('hora_fin', 'Hora Fin:') !!} {!! Form::text('hora_fin', null, ['class' => 'form-control']) !!}
{!! Form::label('fecha_inicio', 'Fecha Inicio:') !!} {!! Form::text('fecha_inicio', null, ['class' => 'form-control','id'=>'fecha_inicio']) !!}
@push('scripts') @endpush
{!! Form::label('fecha_fin', 'Fecha Fin:') !!} {!! Form::text('fecha_fin', null, ['class' => 'form-control','id'=>'fecha_fin']) !!}
@push('scripts') @endpush
{!! Form::label('curso_id', 'Curso Id:') !!} {!! Form::number('curso_id', null, ['class' => 'form-control']) !!}
{!! Form::submit('Save', ['class' => 'btn btn-primary']) !!} Cancel
--}}