@extends('master') @section('breadcrumb') @if($cat->parent != "0") @endif @stop @section('content')
@if(kvfj(Auth::user()->permissions, 'shop_category_edit')) {!! Form::open(['url' => '/category/'.$cat->id.'/edit', 'files' => true]) !!}

Crear categoria de comercios

{!! Form::text('name', $cat->name, ['required']) !!}
{!! Form::file('icon', null) !!}
{!! Form::number('orden', $cat->order, ['required']) !!}
{!! Form::close() !!} @endif

Ícono actual

@stop