@extends('layout') @section('header')
Proveedores / Editar proveedor
@endsection @section('content') @include('error')
Nombre
name : old("name") }}"/> @if($errors->has("name"))
{{ $errors->first("name") }}
@endif
Descripción
{{ is_null(old("description")) ? $supplier->description : old("description") }}
@if($errors->has("description"))
{{ $errors->first("description") }}
@endif
Logo
logo : old("logo") }}"/> @if($errors->has("logo"))
{{ $errors->first("logo") }}
@endif
Categorías
category : old("category") }}"/> @if($errors->has("category"))
{{ $errors->first("category") }}
@endif
Guardar proveedor
Regresar
@endsection @section('scripts') @endsection