@extends('layouts.horizontal', ['title' => 'Nuevo Estudio'])
@section('content')
@include('layouts.partials.page-title', [
'subtitle' => 'Historial',
'title' => 'Crear Estudio para ' . ($paciente->nombre . ' ' . $paciente->apPaterno . ' ' . $paciente->apMaterno)
])
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@endsection