@extends('layouts.master') @section('page_header') {{$patient->first_name}} {{$patient->last_name?:''}} (Age : {{Utils::getAge($patient->dob)}}) @endsection @section('breadcrumb') @endsection @section('content') {{--AngularJs Scripts--}}
{{--Check whether the user has permissions to access these tasks--}} @can('edit',$patient) @endcan @can('issueMedical',$patient) @endcan @can('issueID',$patient) Issue ID @endcan @can('addToQueue',$patient) Add to Queue @endcan
@if(session()->has('success'))

Success!

{{session('success')}}
@endif {{--Error Message--}} @if(session()->has('error'))

Error!

{{session('error')}}
@endif {{-- Nav tabs --}}
@can('edit',$patient) @include('patients.modals.editPatient') @endcan @endsection