ErrorException (E_ERROR) Trying to get property 'title' of non-object (View: D:\xampp\htdocs\xampp\practise\freecode\resources\views\profiles\edit.blade.php)
After migration, I face that problem.
edit.blade.file......
<input id="title"
  type="text"
  class="form-control @error('title') is-invalid @enderror" 
  name="title" 
  value="{{ old('title') ?? $user->profile->title }}" required 
  autocomplete="title" autofocus>
 @error('title')
    <span class="invalid-feedback" role="alert">
        <strong>{{ $message }}</strong>
    </span>
@enderror
 
     
    