@extends('layouts.app') @section('title') {{ __('messages.prescription.edit_prescription') }} @endsection @section('header_toolbar')

@yield('title')

@endsection @section('content')
@include('layouts.errors')
{{ Form::model($prescription, ['route' => ['prescriptions.update', $prescription->id], 'method' => 'patch', 'id' => 'editPrescription']) }} @include('prescriptions.edit_fields') {{ Form::close() }}
@endsection @section('scripts') @endsection