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

@yield('title')

{{ __('messages.common.back') }}
@endsection @section('content')
@include('layouts.errors')
{{ Form::model($medicine, ['route' => ['medicines.update', $medicine->id], 'method' => 'patch', 'id' => 'editMedicine']) }}
@include('medicines.fields')
{{ Form::close() }}
@endsection {{-- --}} {{-- --}}