@extends('templates.default') @section('css') @endsection @section('nav')
  • Home
  • Bodegas
  • Modificar
  • @endsection @section('content') @if($errors->count() > 0)
    @endif
    {{ Form::token() }} {{ Form::hidden('id', $bodega->id) }}
    {{ Form::select('estado', array('A' => 'Activo', 'I' => 'Inactivo', 'S' => 'Suspendido'), $bodega->estado, array('class' => 'form-control')) }}

    @endsection @section('js-footer') @endsection