@extends('layouts.app') @section('content')

Add/Edit Gift


@if(isset($gift)) {!! Form::model($gift, ['route' => ['gift.update']]) !!} {{ Form::hidden('_method', 'PATCH') }} {{ Form::hidden('promo_id', $gift->promo_id) }} {{ Form::hidden('gift_id', $gift->id) }} @else {{ Form::open(array('url' => '/backend/promo/gift', 'method' => 'POST')) }} {{ Form::hidden('promo_id', $promo_id) }} @endif
{{Form::label('product_id', 'Product')}}
{{Form::label('product', 'Bundle')}}
{{Form::text('product', null, array('required' => 'required'))}}
{{Form::label('gift', 'Gift')}}
{{Form::text('gift', null, array('required' => 'required'))}}
{{Form::submit('Save')}}
{!! Form::close() !!}
@endsection