@extends('adminlte::page') @section('content_header')

Matriculaciones/Datos de la matriculación del Estudiante


@stop @section('content')

Datos del estudiante

{{$matricula->estudiante->apellidos}}

{{$matricula->estudiante->nombres}}

{{$matricula->estudiante->ci}}

{{$matricula->estudiante->fecha_nacimiento}}

{{$matricula->estudiante->direccion}}

{{$matricula->estudiante->telefono}}

{{$matricula->estudiante->usuario->email}}

{{$matricula->estudiante->genero}}

Historial Acádemico

@foreach($matricula->estudiante->matriculaciones as $datos) @endforeach
TurnoGestiónGradoParalelo
{{$datos->turno->nombre}} {{$datos->gestion->nombre}} {{$datos->grado->nombre}} {{$datos->paralelo->nombre}}

Llene los datos del formulario

{{$matricula->turno->nombre}}

@error('turno_id') {{ $message }} @enderror

{{$matricula->gestion->nombre}}

@error('gestion_id') {{ $message }} @enderror

{{$matricula->nivel->nombre}}

@error('nivel_id') {{ $message }} @enderror

{{$matricula->grado->nombre}}

@error('grado_id') {{ $message }} @enderror

{{$matricula->paralelo->nombre}}

@error('paralelo_id') {{ $message }} @enderror

{{$matricula->fecha_matriculacion}}

@error('fecha_matriculacion') {{ $message }} @enderror

@stop @section('css') @stop @section('js') @include('footer') @stop