-1
I need to put a default value in a text input.
The default value will be 'Brazil', but I’m using the old helper in Blade and I don’t know how to enter this default value. the code I’m using is this.
<input type="text" name="address_province" value="{{ old('address_province', @$geral->address_province) }}">
I tried to use the or after the value of the variable $geral
, but it didn’t work.