@include('communityoutreach::public.community_outreach.partial.header')

            <section class="single">
                <div class="container">
                    <div class="row">
                        <div class="col-md-3">
                            @include('communityoutreach::public.community_outreach.partial.aside')
                        </div>
                        <div class="col-md-9 ">
                            <div class="area">
                                <div class="item">
                                    <div class="feature">
                                        <img class="img-responsive center-block" src="{!!url($community_outreach->defaultImage('images' , 'xl'))!!}" alt="{{$community_outreach->title}}">
                                    </div>
                                    <div class="content">
                                        <div class="row">
        <div class="col-md-4 col-sm-6">
            <div class"form-group">
                <label for="id">
                    {!! trans('communityoutreach::community_outreach.label.id') !!}
                </label><br />
                    {!! $community_outreach['id'] !!}
            </div>
        </div>
        <div class="col-md-4 col-sm-6">
            <div class"form-group">
                <label for="order">
                    {!! trans('communityoutreach::community_outreach.label.order') !!}
                </label><br />
                    {!! $community_outreach['order'] !!}
            </div>
        </div>
        <div class="col-md-4 col-sm-6">
            <div class"form-group">
                <label for="title">
                    {!! trans('communityoutreach::community_outreach.label.title') !!}
                </label><br />
                    {!! $community_outreach['title'] !!}
            </div>
        </div>
        <div class="col-md-4 col-sm-6">
            <div class"form-group">
                <label for="slug">
                    {!! trans('communityoutreach::community_outreach.label.slug') !!}
                </label><br />
                    {!! $community_outreach['slug'] !!}
            </div>
        </div>
        <div class="col-md-4 col-sm-6">
            <div class"form-group">
                <label for="status">
                    {!! trans('communityoutreach::community_outreach.label.status') !!}
                </label><br />
                    {!! $community_outreach['status'] !!}
            </div>
        </div>
        <div class="col-md-4 col-sm-6">
            <div class"form-group">
                <label for="user_id">
                    {!! trans('communityoutreach::community_outreach.label.user_id') !!}
                </label><br />
                    {!! $community_outreach['user_id'] !!}
            </div>
        </div>
        <div class="col-md-4 col-sm-6">
            <div class"form-group">
                <label for="description">
                    {!! trans('communityoutreach::community_outreach.label.description') !!}
                </label><br />
                    {!! $community_outreach['description'] !!}
            </div>
        </div>
        <div class="col-md-4 col-sm-6">
            <div class"form-group">
                <label for="upload_folder">
                    {!! trans('communityoutreach::community_outreach.label.upload_folder') !!}
                </label><br />
                    {!! $community_outreach['upload_folder'] !!}
            </div>
        </div>
        <div class="col-md-4 col-sm-6">
            <div class"form-group">
                <label for="images">
                    {!! trans('communityoutreach::community_outreach.label.images') !!}
                </label><br />
                    {!! $community_outreach['images'] !!}
            </div>
        </div>
        <div class="col-md-4 col-sm-6">
            <div class"form-group">
                <label for="icon">
                    {!! trans('communityoutreach::community_outreach.label.icon') !!}
                </label><br />
                    {!! $community_outreach['icon'] !!}
            </div>
        </div>
        <div class="col-md-4 col-sm-6">
            <div class"form-group">
                <label for="created_at">
                    {!! trans('communityoutreach::community_outreach.label.created_at') !!}
                </label><br />
                    {!! $community_outreach['created_at'] !!}
            </div>
        </div>
        <div class="col-md-4 col-sm-6">
            <div class"form-group">
                <label for="updated_at">
                    {!! trans('communityoutreach::community_outreach.label.updated_at') !!}
                </label><br />
                    {!! $community_outreach['updated_at'] !!}
            </div>
        </div>
        <div class="col-md-4 col-sm-6">
            <div class"form-group">
                <label for="deleted_at">
                    {!! trans('communityoutreach::community_outreach.label.deleted_at') !!}
                </label><br />
                    {!! $community_outreach['deleted_at'] !!}
            </div>
        </div>
    </div>

                <div class='col-md-4 col-sm-6'>
                       {!! Form::numeric('order')
                       -> label(trans('communityoutreach::community_outreach.label.order'))
                       -> placeholder(trans('communityoutreach::community_outreach.placeholder.order'))!!}
                </div>

                <div class='col-md-4 col-sm-6'>
                       {!! Form::text('title')
                       -> label(trans('communityoutreach::community_outreach.label.title'))
                       -> placeholder(trans('communityoutreach::community_outreach.placeholder.title'))!!}
                </div>

                <div class='col-md-4 col-sm-6'>
                       {!! Form::text('description')
                       -> label(trans('communityoutreach::community_outreach.label.description'))
                       -> placeholder(trans('communityoutreach::community_outreach.placeholder.description'))!!}
                </div>

                <div class='col-md-4 col-sm-6'>
                       {!! Form::text('images')
                       -> label(trans('communityoutreach::community_outreach.label.images'))
                       -> placeholder(trans('communityoutreach::community_outreach.placeholder.images'))!!}
                </div>

                <div class='col-md-4 col-sm-6'>
                       {!! Form::text('icon')
                       -> label(trans('communityoutreach::community_outreach.label.icon'))
                       -> placeholder(trans('communityoutreach::community_outreach.placeholder.icon'))!!}
                </div>
                                    </div>
                                </div>
                            </div>
                        </div>
                    </div>
                </div>
            </section>