{{ html()->label(__('movie.lbl_imdb_rating') . ' *', 'IMDb_rating')->class('form-label') }}
{{ html()->text('IMDb_rating')
->attribute('value', old('IMDb_rating', $data->IMDb_rating)) // Use old value or the existing movie value
->placeholder(__('movie.lbl_imdb_rating'))
->class('form-control')
->required() }}
@error('IMDb_rating')
{{ $message }}
@enderror