@extends('layouts.layout') @section('title', 'Manage offer') @section('content')

Manage Offer


Manage Offer
@if(Session::has('success')) @endif @if(count($errors) > 0) @endif {!! Form::model($offer,['route'=>['offer_update',$offer->id],'method'=>'PUT']) !!}

Offer Title :

Offer Description :

{!! Form::submit('Update Offer', ['class'=>'btn btn-primary btn-block btn-lg margin-top-20']) !!}
{!! Form::close() !!}
@endsection