@extends('layouts.app') @section('title') {{ __('messages.case.edit_case') }} @endsection @section('page_css') @endsection @section('header_toolbar')

@yield('title')

@endsection @section('content')
@include('layouts.errors')
{{ Form::model($patientCase, ['route' => ['patient-cases.update', $patientCase->id], 'method' => 'patch', 'id' => 'editPatientCaseForm']) }} @include('patient_cases.fields') {{ Form::close() }}
@endsection @section('page_scripts') @endsection @section('scripts') @endsection