laravel old value not working in textarea

Solutions on MaxInterview for laravel old value not working in textarea by the best coders in the world

showing results for - "laravel old value not working in textarea"
Raphael
10 Jun 2020
1<fieldset class="form-group">
2  @error('address')
3  	<span class="invalid-feedback" role="alert">
4  		<strong>{{ $message }}</strong>
5  		</span>
6  @enderror
7  <textarea  id="address" rows="4" class="text-capitalize round form-control @error('address') is-invalid @enderror" name="address" placeholder="Company Address" required autocomplete="address" autofocus>{{ old('address') }}</textarea>
8 </fieldset>