@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content') Festival Festival Create Active List Deactive List Add New {!! Form::open(['action' => 'FestivalController@store', 'method' => 'POST', 'class' => 'form-horizontal space-top','data-parsley-validate','enctype'=>'multipart/form-data']) !!} {{Form::label('name', 'Name', ['class'=>'required col-md-2'])}} {{Form::text('name', '', ['class'=>'form-control', 'placeholder'=>'Festival Name', 'required'])}} {{Form::label('date', 'Date', ['class'=>'required col-md-2'])}} {{Form::label('image', 'Upload Image', ['class'=>'col-md-2'])}} {!! Form::file('image', array('class' => 'file-upload', 'accept'=>'image/*')) !!} {{Form::submit('Add Festival', ['class'=>'btn btn-primary'])}} {{Form::reset('Reset', ['class'=>'btn btn-danger'])}} {!! Form::close() !!} @endsection