@extends('layouts.master') @section('title', 'PetroERP- An ERP for Petrol Pumps') @section('content')
Festival
{!! Form::open(['action' => ['FestivalController@update',$festival->id], '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', $festival->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/*')) !!}
@if($festival->image)
No Image Found
@endif
{{Form::hidden('_method', 'PUT')}} {{Form::submit('Update Festival', ['class'=>'btn btn-primary'])}} {{Form::reset('Reset', ['class'=>'btn btn-danger'])}}
{!! Form::close() !!}
@endsection