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

ARTICULOS CALCULADOS

@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('courier_name')) {{ $errors->first('courier_name') }} @endif
@if ($errors->has('courier_freight')) {{ $errors->first('courier_freight') }} @endif
@if ($errors->has('courier_managment')) {{ $errors->first('courier_managment') }} @endif
@if ($errors->has('article')) {{ $errors->first('article') }} @endif
@if ($errors->has('weight')) {{ $errors->first('weight') }} @endif
@if ($errors->has('price')) {{ $errors->first('price') }} @endif
Volver atras
@endsection