@extends('layouts.admin.app') @section('title') Edit {{$coupon->code}} @stop @section('main')
{!! Form::open(['method'=>'PUT','action' => ['CouponController@update',$coupon->id]]) !!}

Add new Coupon

{!! Form::label('code', 'Coupon Code:') !!} {!! Form::text('code', $coupon->code, ['class'=>'form-control', 'placeholder'=>'e.g. GG12ABC']) !!} @if ($errors->has('code')) {{ $errors->first('code') }} @endif
{!! Form::label('description', 'Description:') !!} {!! Form::text('description', $coupon->description, ['class'=>'form-control', 'placeholder'=>'Coupon Description']) !!} @if ($errors->has('description')) {{ $errors->first('description') }} @endif
{!! Form::label('type', 'Type:') !!} {!! Form::select('type', ['1'=>'Percentage ( % )', '2'=>'Fixed Amount ( $ )'], $coupon->type,['class'=>'form-control', 'placeholder'=>'Select Coupon Type']) !!} @if ($errors->has('type')) {{ $errors->first('type') }} @endif
{!! Form::label('discount', 'Discount Amount:') !!} {!! Form::number('discount', $coupon->discount, ['class'=>'form-control', 'placeholder'=>'e.g. 10','step'=>'0.01']) !!} @if ($errors->has('discount')) {{ $errors->first('discount') }} @endif
{!! Form::submit('Update Coupon', ['class'=>'btn btn-primary']) !!}
{!! Form::close() !!}
@stop @section('footer') @stop