@extends('back.layout') @section('css') @endsection @section('main')
@if (session('user-updated')) @component('back.components.alert') @slot('type') success @endslot {!! session('user-updated') !!} @endcomponent @endif
{{ csrf_field() }} {{ method_field('PUT') }}
{!! $errors->first('name', ':message') !!}
{!! $errors->first('email', ':message') !!}
@if ($user->ingoing)
@endif @if ($user->confirmed)

@lang('Confirmed')

@else
@endif @if ($user->valid)

@lang('Valid')

@else
@endif
@endsection