@extends('admin.master') @section('title','Stock Transfer') @section('page_css') @endsection @section('content')
@yield('title')
{{ Form::open(array('route' => 'stock_transfer.store','class'=>'form-horizontal','id' => 'myForm')) }}
@if($errors->any()) @endif @if(session()->has('success'))
 {{ session()->get('success') }}
@endif @if(session()->has('error'))
 {{ session()->get('error') }}
@endif
{{ Form::select('from_warehouse_id',$warehouse, Input::old('from_warehouse_id'), array('class' => 'form-control form_warehouse','required'=>'required')) }}
{{ Form::select('to_warehouse_id',$warehouse, Input::old('to_warehouse_id'), array('class' => 'form-control to_warehouse','required'=>'required')) }}
{!! Form::date('date', \Carbon\Carbon::now()->format('Y-m-d'), $attributes = array('class'=>'form-control required ','required'=>'required')) !!}
Search Product
Product (Code - Name) Available Stock Transfer Qty Serial Options

{{ Form::close() }}
@endsection @section('page_scripts') @endsection