@section('content')

Upload a picture

@if($errors->has())
@foreach ($errors->all() as $row)
{{ $row }}
@endforeach
@endif {{ Form::model($picture, array('route' => array('admin.galleries.store'), 'method' => 'POST', 'files' => true, 'class' => 'form-horizontal')) }} {{ Form::hidden('neighborhood_id', $neighborhood->neighborhood_id) }}
{{ Form::file('file', array('id' => 'input-file', 'required' => 'true', 'placeholder' => 'File')) }}
{{ Form::text('title', null, array('id' => 'input-title', 'placeholder' => 'Picture Title', 'required' => 'true', 'class' => 'form-control')) }}
{{ Form::textarea('description', null, array('id' => 'input-description', 'placeholder' => 'Description', 'class' => 'form-control', 'rows' => 5)) }}
{{ Form::text('sort_order', null, array('id' => 'input-sort_order', 'placeholder' => 'Sort Order', 'class' => 'form-control')) }}
{{ Form::select('is_cover', array('1' => 'Yes', '0' => 'No'), '0', array('id' => 'input-is_cover', 'class' => 'form-control')) }}
{{ Form::select('is_active', array('1' => 'Yes', '0' => 'No'), null, array('id' => 'input-is_active', 'class' => 'form-control')) }}
Cancel
{{ Form::close() }} @endsection