@extends('entity.app') @section('title', __('student.show_health')) @section('content')

@lang('student.show_health') ({{ $health->name }})

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@lang('student.back')
@include('components.delete_modal', [ 'warning_message' => __('student.warning_message'), 'destroy_route' => route('std_healthes.destroy', $health->id), ]) @endsection