@extends('admin.layouts.default') @section('head') {{ Config::get('backend.web_title', '網站內容管理系統') }} @stop @section('content')
{{ Form::model($inputs) }}
{{-- 主旨 --}}
{{ Form::label('subject', '主旨') }}
{{ $inputs['subject'] }}
{{-- /主旨 --}} {{-- 聯絡人 --}}
{{ Form::label('name', '聯絡人') }}
{{ stripcslashes($inputs['name']) }}
{{-- /聯絡人 --}} {{-- 電話 --}} @if (!empty($inputs['tel']))
{{ Form::label('tel', '電話') }}
{{ $inputs['tel'] }}
@endif {{-- /電話 --}} {{-- email --}}
{{ Form::label('email', 'email') }}
{{ $inputs['email'] }}
{{-- /email --}} {{-- 地址 --}} @if (!empty($inputs['address']))
{{ Form::label('address', '地址 ') }}
{{ $inputs['zipcode'].$inputs['county'].$inputs['district'].$inputs['address'] }}
@endif {{-- /地址 --}} {{-- 留言 --}}
{{ Form::label('message', '留言') }}
{{ stripcslashes($inputs['message']) }}
{{-- /留言 --}} {{-- ip --}}
{{ Form::label('ip', 'ip') }}
{{ $inputs['ip'] }}
{{-- /ip --}} {{-- 留言時間 --}}
{{ Form::label('created_at', '留言時間') }}
{{ $inputs['created_at'] }}
{{-- /留言時間 --}} {{-- 狀態 --}}
{{ Form::label('status', '狀態') }}
{{ Form::select('status', $status_item, null, array('class' => 'form-control')) }}
{{-- /狀態 --}} {{-- 管理者備註 --}}
{{ Form::textarea('note', null, array('class' => 'form-control')) }}
{{-- /管理者備註 --}}

回上頁
{{ Form::close() }}
@stop