@section('content')

Offerings> Subscription agreement

"{{ $offering->name }}" Offering - Subscription agreement

@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif {{ Form::model($agreement, $method) }}
Cancel
{{ Form::text('title', null, array('id' => 'input-title', 'placeholder' => 'Title', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::textarea('content', null, array('id' => 'input-content', 'rows'=> 30, 'placeholder' => 'Subscription Agreement Content', 'class' => 'form-control')) }}
Cancel
{{ Form::close() }} @endsection