@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100']) @section('content') @include('layouts.navbars.auth.topnav', ['title' => 'Solicitud estudio'])
@include('components.alert')
@csrf

Solicitud de estudio

@if ($errors->any())
Ingrese los datos correctamente por favor
@endif {{-- @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif --}}
{{-- --}} @if ($errors->has('paciente_id')) {{ $errors->first('paciente_id') }} @endif
@foreach (['S.U.S', 'Sin seguro', 'Otro'] as $index => $seguro)
@endforeach
@if ($errors->has('seguro')) {{ $errors->first('seguro') }} @endif
@foreach (['Ambulatorio', 'Internación'] as $index => $tipo_atencion)
@endforeach
@if ($errors->has('tipo_atencion')) {{ $errors->first('tipo_atencion') }} @endif
@if ($errors->has('sala')) {{ $errors->first('sala') }} @endif
@if ($errors->has('num_cama')) {{ $errors->first('num_cama') }} @endif
@if ($errors->has('diagnostico')) {{ $errors->first('diagnostico') }} @endif
@include('solicitud.examenesModal')
@push('js') @if (session('confirm_message')) @endif @endpush @include('layouts.footers.auth.footer')
@endsection