@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content') Tank Callibration Upload Basic Settings Tank Callibration Upload Excel Upload {{-- Import File --}} {!! Form::open(['action' => 'TankCallibrationUploadsController@store', 'method' => 'POST', 'class' => 'form-horizontal','data-parsley-validate', 'enctype'=>'multipart/form-data','files'=>'true']) !!} Active List Deactive List Upload {{Form::label('machineId', 'Pump', ['class'=>'required col-md-2'])}} {{Form::select('pumpId', $pumps, null, ['class'=>'form-control', 'id'=>'calpumpId', 'placeholder'=>'Pick a Pump'])}} {{Form::label('tankId', 'Tank', null, ['class'=>'required col-md-2'])}} {{Form::select('tankId', $tanks, null, ['class'=>'tankId form-control', 'id'=>'caltankId', 'placeholder'=>'Pick a Tank'])}} {!! Form::label('file','Select File to Import:',['class'=>'col-md-2']) !!} {!! Form::file('file', array('class' => 'form-control')) !!} {!! $errors->first('file', ':message') !!} {{Form::submit('Upload', ['class'=>'btn btn-primary'])}} {{Form::reset('Reset', ['class'=>'btn btn-primary'])}} {!! Form::close() !!} @endsection
:message