@extends('admin.layouts.default') @section('head') {{ Config::get('backend.web_title', '網站內容管理系統') }} @stop @section('content')
{{ Form::model($inputs) }}
{{-- 設定類別 --}}
{{ Form::label('type', '設定類別') }}
{{ Form::select('type', $type_arr, null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('type', '

:message

') }}
{{-- /設定類別 --}} {{-- 設定項目名稱 --}}
{{ Form::label('title', '設定項目名稱') }}
{{ Form::text('title', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('title', '

:message

') }}
{{-- /設定項目名稱 --}} {{-- key --}}
{{ Form::label('keyword', 'key') }}
{{ Form::text('keyword', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('keyword', '

:message

') }}
{{-- /key --}} @if ($inputs['type'] == 'num') {{-- num --}}
{{ Form::label('num', '設定值') }}
{{ Form::input('number','num', null, array('class' => 'form-control')) }} {{ $errors->first('num', '

:message

') }}
{{-- /num --}} @endif @if ($inputs['type'] == 'str') {{-- str --}}
{{ Form::label('str', '設定值') }}
{{ Form::text('str', null, array('class' => 'form-control')) }} {{ $errors->first('str', '

:message

') }}
{{-- /str --}} @endif @if ($inputs['type'] == 'text') {{-- text --}}
{{ Form::label('text', '設定值') }}
{{ Form::textarea('text', null, array('class' => 'form-control')) }} {{ $errors->first('text', '

:message

') }}
{{-- /text --}} @endif {{-- 設定說明 --}}
{{ Form::label('descript', '設定說明') }}
{{ Form::text('descript', null, array('class' => 'form-control')) }} {{ $errors->first('descript', '

:message

') }}
{{-- /設定說明 --}}

取消
{{ Form::close() }}
@stop