@extends('admin.layouts.default') @section('head') {{ Config::get('backend.web_title', '網站內容管理系統') }} @stop @section('content')
{{ Form::model($inputs, array('files' => true)) }}
{{-- 圖片標題 --}}
{{ Form::label('title', '圖片標題') }}
{{ Form::text('title', null, array('class' => 'form-control', 'required' => 'required')) }} {{ $errors->first('title', '

:message

') }}
{{-- /圖片標題 --}} {{-- 圖片上傳 --}}
{{ Form::label('file_name', '圖片上傳') }}
{{ Form::file('file_name') }}
{{-- 圖片上傳 --}}

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