@section('content')
Offerings> Offering Terms > {{ $title }}
"{{ $offering->name }}" Offering - Data Room
@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif
{{ Form::model($library, $method) }}
{{ Form::text('title', null, array('id' => 'input-title', 'placeholder' => 'Title', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::textarea('description', null, array('id' => 'input-description', 'placeholder' => 'Description', 'required' => 'true', 'class' => 'form-control')) }}
@if(!empty($library->file_path))
{{ Form::file('file'); }}
@endif
{{ Form::text('sort_order', null, array('id' => 'input-sort_order', 'class' => 'form-control')) }}
{{ Form::select('is_active', array('1' => 'Yes', '0' => 'No'), null, array('id' => 'input-is_active', 'class' => 'form-control')) }}
{{ Form::close() }}
@endsection