@extends('layouts.dashboard') @section('stylesheet') @endsection @section('content')
View Category
{{ Form::label('name_en', "Name: ", ['class' => 'control-label']) }} {{ Form::label('name_en',$categorie->name_en , ['class' => 'control-label green']) }}
{{ Form::label('image', 'Image: ', ['class' => 'control-label']) }} {{ Html::image($categorie->image, null,array('class'=>'img-bike')) }}
{{ Form::label('desciption_en', 'Description: ', ['class' => 'control-label','style'=>'width: 12.33%;']) }} {!! $categorie->desciption_en !!}
@if($categorie->testimonials)

Testimonials

@foreach($categorie->testimonials as $testimonial)
Testimonial {{ $loop->index+1 }}
{{ Form::label('title_en', "Title: ", ['class' => 'control-label']) }} {{ Form::label('title_en',$testimonial->title_en , ['class' => 'control-label green']) }}
{{ Form::label('firstname', "Firstname: ", ['class' => 'control-label']) }} {{ Form::label('firstname',$testimonial->firstname , ['class' => 'control-label green']) }}
{{ Form::label('lastname', "Lastname: ", ['class' => 'control-label']) }} {{ Form::label('lastname',$testimonial->lastname , ['class' => 'control-label green']) }}
{{ Form::label('country_en', "Country: ", ['class' => 'control-label']) }} {{ Form::label('country_en',$testimonial->country_en , ['class' => 'control-label green']) }}
{{ Form::label('image', 'Image: ', ['class' => 'control-label']) }} {{ Html::image($testimonial->image, null,array('class'=>'img-bike with-10')) }}
{{ Form::label('desciption_en', 'Description: ', ['class' => 'control-label','style'=>'width: 12.33%;']) }} {!! $testimonial->desciption_en !!}
@endforeach @endif
@endsection @section('scripts') {!! Html::script('backoffice/vendor/ckeditor/ckeditor.js') !!} @endsection