D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
www
/
storage
/
framework
/
views
/
Filename :
da784db39068c811e60a484f74a34bf79d305a9e.php
back
Copy
<?php $__env->startSection('content'); ?> <div class="row"> <div class="col-sm-10 col-sm-offset-2"> <h1><?php echo e(trans('quickadmin::templates.templates-view_edit-edit')); ?></h1> <?php if($errors->any()): ?> <div class="alert alert-danger"> <ul> <?php echo implode('', $errors->all('<li class="error">:message</li>')); ?> </ul> </div> <?php endif; ?> </div> </div> <?php echo Form::model($artist, array('files' => true, 'class' => 'form-horizontal', 'id' => 'form-with-validation', 'method' => 'PATCH', 'route' => array(config('quickadmin.route').'.artist.update', $artist->id))); ?> <div class="form-group"> <?php echo Form::label('name', 'name*', array('class'=>'col-sm-2 control-label')); ?> <div class="col-sm-10"> <?php echo Form::text('name', old('name',$artist->name), array('class'=>'form-control')); ?> </div> </div><div class="form-group"> <?php echo Form::label('body', 'body', array('class'=>'col-sm-2 control-label')); ?> <div class="col-sm-10"> <?php echo Form::textarea('body', old('body',$artist->body), array('class'=>'form-control')); ?> </div> </div><div class="form-group"> <?php echo Form::label('saloon_id', 'saloon_id', array('class'=>'col-sm-2 control-label')); ?> <div class="col-sm-10"> <?php echo Form::select('saloon_id', $saloons, old('saloon_id',$artist->saloon_id), array('class'=>'form-control')); ?> </div> </div><div class="form-group"> <?php echo Form::label('picture', 'picture', array('class'=>'col-sm-2 control-label')); ?> <div class="col-sm-10"> <?php echo Form::file('picture'); ?> <?php echo Form::hidden('picture_w', 4096); ?> <?php echo Form::hidden('picture_h', 4096); ?> </div> </div><div class="form-group"> <?php echo Form::label('categories', 'categories', array('class'=>'col-sm-2 control-label')); ?> <div class="col-sm-10"> <?php echo Form::text('categories', old('categories',$artist->categories), array('class'=>'form-control')); ?> </div> </div> <div class="form-group"> <?php echo Form::label('contacts', 'contacts', array('class'=>'col-sm-2 control-label')); ?> <div class="col-sm-10"> <?php echo Form::text('contacts', old('contacts',$artist->contacts), array('class'=>'form-control')); ?> </div> </div> <div class="form-group"> <?php echo Form::label('order_by', 'order_by', array('class'=>'col-sm-2 control-label')); ?> <div class="col-sm-10"> <?php echo Form::text('order_by', old('order_by',$artist->order_by), array('class'=>'form-control')); ?> </div> </div> <div class="form-group"> <?php echo Form::label('showhide', 'showhide', array('class'=>'col-sm-2 control-label')); ?> <div class="col-sm-10"> <?php echo Form::select('showhide', $showhide, old('showhide',$artist->showhide), array('class'=>'form-control')); ?> </div> </div> <div class="form-group"> <div class="col-sm-10 col-sm-offset-2"> <?php echo Form::submit(trans('quickadmin::templates.templates-view_edit-update'), array('class' => 'btn btn-primary')); ?> <?php echo link_to_route(config('quickadmin.route').'.artist.index', trans('quickadmin::templates.templates-view_edit-cancel'), null, array('class' => 'btn btn-default')); ?> </div> </div> <?php echo Form::close(); ?> <?php $__env->stopSection(); ?> <?php echo $__env->make('admin.layouts.master', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>