@extends('admin.master') @section('title') Medicines Restock @endsection @section('sideMenuTitle') Medicines Restock @endsection @section('pageTitle') Medicine List @endsection @section('bodyContent') @if(Session::has('message')) × {{Session::get('message')}} @endif @if(Session::has('error')) × {{Session::get('error')}} @endif @if ($errors->any()) × @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif Add Category Add Medicine Groups Add Generic Names Add Company Names @if (isset($medicine)) {!! Form::open(['url' => 'product/updateStock', 'method' => 'post','name' => 'medForm', 'enctype' => 'multipart/form-data', 'role' => 'form']) !!} @endif Medicine Name * Purchase Price({{ $settings == NULL ? 'Currency Not Set' : $settings->currency_symbol ?? 'Currency Not Set' }}) Per Piece * Selling Price({{ $settings == NULL ? 'Currency Not Set' : $settings->currency_symbol ?? 'Currency Not Set' }}) Per Piece * Number of Store Box of Medicine * Items Each Box * Medicine Expire Date File input (Optional) {!! Form::close() !!} @endsection