@extends('layouts.'.env('THEME')) @section('content')
{!! Form::model($offer_info, ['route' => ['offer.update', $offer_info->id]]) !!} @method('PATCH') {!! Form::token() !!}
@include('offer.form')
{!! Form::submit('Update', ['class' => 'btn btn-primary']) !!}
{!! Form::close() !!}
@endsection @section('script') @include('offer.form_script') @endsection