{{ __('router.header.edit') }}
{!! Form::model($router, ['method' => 'PATCH','route' => ['routers.update', $router->id]]) !!}
{!! Form::text('name', null, array('placeholder' => __('router.placeholder.type'),'class' => 'form-control')) !!}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
{!! Form::close() !!}