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