@extends('layouts.app') @section('title', 'Edit') @section('content')
{{ Form::model($healthProblem, ['route' => ['admin.health-problems.update', 'health_problem' => $healthProblem], 'method' => 'PUT']) }}
@include('health-problems.form')
{{ Form::close() }}
@endsection