@extends("la.layouts.app") @section("contentheader_title") Vendedore : @endsection @section("contentheader_description", $vendedore->$view_col) @section("section", "Vendedores") @section("section_url", url(config('laraadmin.adminRoute') . '/vendedores')) @section("sub_section", "Edit") @section("htmlheader_title", "Vendedores Edit : ".$vendedore->$view_col) @section("main-content") @if (count($errors) > 0)
@endif
{!! Form::model($vendedore, ['route' => [config('laraadmin.adminRoute') . '.vendedores.update', $vendedore->id ], 'method'=>'PUT', 'id' => 'vendedore-edit-form']) !!} @la_form($module) {{-- @la_input($module, 'nombre') @la_input($module, 'paterno') @la_input($module, 'materno') @la_input($module, 'telefono') @la_input($module, 'celular') @la_input($module, 'correo') @la_input($module, 'password') @la_input($module, 'ciudad') @la_input($module, 'colonia') @la_input($module, 'calle') @la_input($module, 'numero') @la_input($module, 'cp') @la_input($module, 'comentarios') --}}
{!! Form::submit( 'Update', ['class'=>'btn btn-success']) !!}
{!! Form::close() !!}
@endsection @push('scripts') @endpush