@extends('admin.layouts.layouts') @section('title', 'Create | Pesticide') @section('content')
{!! Form::open([ 'route' => 'pesticide.store', 'method' => 'POST', 'id' => 'validate_form_add_pesticide', 'class' => 'forms-sample', 'enctype' => 'multipart/form-data', ]) !!} @csrf
{{ $errors->first('name') }}
{{ $errors->first('image') }}
{{ $errors->first('opening_stock') }}
{{ $errors->first('price') }}
{{ $errors->first('selling_price') }}
{{ $errors->first('effective_date') }}
{{ $errors->first('description') }}
{{ Form::close() }}
@endsection @section('page-js') @endsection