@extends('admin.layouts.default') @section('head') {{ Config::get('backend.web_title', '網站內容管理系統') }} @stop @section('content')
{{ Form::model($inputs, array('files' => true)) }}
{{-- 圖片預覽 --}}
{{ Form::label('preview', '圖片預覽') }}
@if (!empty($inputs['file_name']) && file_exists('uploads/album/thumb/'.$inputs['file_name'])) {{ HTML::image('uploads/album/thumb/'.$inputs['file_name']) }} @else 無圖片 @endif
{{-- 圖片預覽 --}} {{-- 圖片上傳 --}}
{{ Form::label('file_name', '圖片重新上傳') }}
{{ Form::file('file_name') }}
{{-- 圖片重新上傳 --}} {{-- 圖片標題 --}}
{{ Form::label('title', '修改圖片標題') }}
{{ Form::text('title', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('title', '

:message

') }}
{{-- /圖片標題 --}}

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