@extends('layouts.app') @section('title', 'De-para Status Usuários') @section('content_header')
Status dos Usuários
@stop @section('content')
@csrf {{method_field('PUT')}}
De
@if($errors->has('status_from'))
{{$errors->first('status_from')}}
@endif
Status
Selecione o Status
status_to == 'A' ? 'selected' : ''}} value="A">Ativar
status_to == 'B' ? 'selected' : ''}} value="B">Bloquear
status_to == 'I' ? 'selected' : ''}}value="I">Inativar
status_to == 'E' ? 'selected' : ''}}value="E">Excluir
@if($errors->has('status_to'))
{{$errors->first('status_to')}}
@endif
@stop