@extends('profile.index') @section('profile-content') @include('include.message')
@csrf
{{ __('Name') }}
@if ($errors->has('username'))
{{ $errors->first('username') }}
@endif
{{ __('Email') }}
@if ($errors->has('email'))
{{ $errors->first('email') }}
@endif
{{ __('Save') }}
@endsection