@extends('layouts/default') {{-- Page title --}} @section('title') {{ trans('admin/models/table.view') }} {{ $model->model_tag }} @parent @stop @section('header_right') @can('superuser')
@endcan @stop {{-- Page content --}} @section('content')
@if ($model->id)

{{ $model->name }} {{ ($model->model_number) ? '(#'.$model->model_number.')' : '' }}

@endif
{{ Form::open([ 'method' => 'POST', 'route' => ['hardware/bulkedit'], 'class' => 'form-inline', 'id' => 'bulkForm']) }}
{{ Form::close() }}

{{ trans('general.moreinfo') }}:

@if ($model->image) @endif @if ($model->note) Notes:

{!! $model->present()->note() !!}

@endif
@stop @section('moar_scripts') @include ('partials.bootstrap-table') @stop