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

@yield('title')

@endsection @section('content')
@include('layouts.errors')
{{ Form::open(['route' => 'prescriptions.store', 'id' => 'createPrescription']) }} @include('prescriptions.fields') {{ Form::close() }}
@endsection @section('scripts') @endsection