@extends('layouts.app-general') @section('content')

ARTICULOS DE LA CALCULADORA

@yield('content')
@if(session('flash_message'))
Enhorabuena!, {{ session('flash_message') }}
@endif

@if(!isset($article)) Agregar articulo @elseif(strstr(Request::url(), "view")) Ver articulo @else Editar articulo @endif

@if(isset($article))
@else @endif
@if ($errors->has('article_name')) {{ $errors->first('article_name') }} @endif
@if ($errors->has('brand')) {{ $errors->first('brand') }} @endif
@if ($errors->has('model')) {{ $errors->first('model') }} @endif
@if ($errors->has('category_id')) {{ $errors->first('category_id') }} @endif
@if ($errors->has('pound')) {{ $errors->first('pound') }} @endif
@if ($errors->has('cost')) {{ $errors->first('cost') }} @endif
@if ($errors->has('width')) {{ $errors->first('width') }} @endif
@if ($errors->has('height')) {{ $errors->first('height') }} @endif
@if ($errors->has('large')) {{ $errors->first('large') }} @endif
Volver atras
@endsection