@extends('layouts.nifty') @section('content')

Change Email Address

Complete the form below to Change your Email

@csrf @method('PATCH')
@if(session('message'))
@endif @if($errors->count() > 0)
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @yield('content')
@if($errors->has('current_password')) {{ $errors->first('current_password') }} @endif
@include('partials.footer')
@endsection