@extends('admin.layouts.master') @section('content')

{{ trans('quickadmin::templates.templates-view_edit-edit') }}

@if ($errors->any())
    {!! implode('', $errors->all('
  • :message
  • ')) !!}
@endif
{!! Form::model($galleries, array('files' => true, 'class' => 'form-horizontal', 'id' => 'form-with-validation', 'method' => 'PATCH', 'route' => array(config('quickadmin.route').'.galleries.update', $galleries->id))) !!}
{!! Form::label('name', 'name', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('name', old('name',$galleries->name), array('class'=>'form-control')) !!}
{!! Form::label('picture', 'picture', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::file('picture') !!} {!! Form::hidden('picture_w', 4096) !!} {!! Form::hidden('picture_h', 4096) !!}
{!! Form::label('artist_id', 'artist_id', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::select('artist_id', $artist, old('artist_id',$galleries->artist_id), array('class'=>'form-control')) !!}
{!! Form::label('type', 'type', array('class'=>'col-sm-2 control-label')) !!}
{!! Form::text('type', old('type',$galleries->type), array('class'=>'form-control')) !!}
{!! Form::submit(trans('quickadmin::templates.templates-view_edit-update'), array('class' => 'btn btn-primary')) !!} {!! link_to_route(config('quickadmin.route').'.galleries.index', trans('quickadmin::templates.templates-view_edit-cancel'), null, array('class' => 'btn btn-default')) !!}
{!! Form::close() !!} @endsection