@extends('admin.layouts.default') @section('content')
{{ Form::model($inputs) }}
{{-- 相簿分類 --}}
{{ Form::label('tag', '相簿分類') }}
@foreach ($album_tags as $element) {{ Form::checkbox('tag_'.$element['id'], $element['id'], null, array('id' => 'tag_'.$element['id'])) }} {{ Form::label('tag_'.$element['id'], $element['name']) }} @endforeach
{{-- /相簿分類 --}} {{-- 相簿名稱 --}}
{{ Form::label('title', '相簿名稱') }}
{{ Form::text('title', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('title', '

:message

') }}
{{-- /相簿名稱 --}} {{-- 相簿日期 --}}
{{ Form::label('post_at', '相簿日期') }}
{{ Form::input('date', 'post_at', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('post_at', '

:message

') }}
{{-- /相簿日期 --}}

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