@extends('admin.layout') @section('subtitle') Create Attachment @stop @section('content')

Attachment New

{{ Form::open( array('action' => array('AttachmentController@store', $game -> id), 'class' => 'form-horizontal', 'files' => true)) }}
{{ Form::text('name', '', array('class' => 'form-control input-lg', 'placeholder' => 'Attachment Name', 'required' => '')) }}
{{ Form::text('slot', '', array('class' => 'form-control input-lg', 'placeholder' => 'Attachment Slot Number', 'required' => '')) }}
{{ Form::label('image', 'Upload Image: ', array('class' => 'control-label'))}} {{ Form::file('image', '', array('class' => 'form-control input-lg')) }}
{{ Form::close() }}
@stop @section('page-scripts') @stop