@extends('layouts.app') @section('titulo', (!$model->exists ? 'Creando' : 'Editando') . ' Router') @section('titulo_card', 'Datos del router') @section('content') {{ html()->modelForm($model, !$model->exists ? 'POST' : 'PATCH', !$model->exists ? route('configuracion.router.store') : route('configuracion.router.update', $model->id))->open() }}
{{ html()->text('Nombre')->class('form-control')->attributes(['oninput' => 'this.value = this.value.toUpperCase()']) }}
{{ html()->text('User')->class('form-control') }}
{{ html()->text('Pass')->class('form-control') }}
{{ html()->text('Red')->class('form-control') }}
{{ html()->text('Mask')->class('form-control') }}
{{ html()->text('IP')->class('form-control') }}
{{ html()->submit(' ' . (!$model->exists ? 'Guardar' : 'Editar'))->class('btn btn-primary') }}
{{ html()->closeModelForm() }} @endsection