@section('content')
Offerings> Summary
"{{ $offering->name }}" Offering - Summary
@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif
{{ Form::model($summary, $method) }}
{{ Form::select('library_id', $libraries, null, array('id' => 'input-library_id', 'class' => 'form-control')) }}
{{ Form::textarea('content', null, array('id' => 'redactor', 'rows'=> 30, 'placeholder' => 'Summary Content', 'class' => 'form-control')) }}
{{ Form::close() }}
@endsection