@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pump Product') @section('content') Our Team Basic Settings Our Team Update Our Team Active List Deactive List Edit Product {!! Form::open(['action' => ['OurTeamsController@update', $team->id], 'method' => 'POST', 'class' => 'form-horizontal space-top','data-parsley-validate','enctype'=>'multipart/form-data']) !!} {{Form::label('name', 'Employee Name', ['class'=>'required col-md-2'])}} {{Form::text('name', $team->name, ['class'=>'form-control', 'placeholder'=>'Employee Name','required'])}} {{Form::label('role', 'Role', ['class'=>'required col-md-2'])}} {{Form::text('role', $team->role, ['class'=>'form-control', 'placeholder'=>'Employee Role','required'])}} {{Form::label('photopath', 'Select Photo', ['class'=>'required col-md-2'])}} {{ Form::file('photopath', array('class' => 'form-control file-upload', 'accept'=>'image/*')) }} {{Form::hidden('_method', 'PUT')}} {{Form::submit('Update', ['class'=>'btn btn-primary'])}} {{Form::reset('Reset', ['class'=>'btn btn-primary'])}} {!! Form::close() !!} @endsection