Attribute Added

This commit is contained in:
Devansh 2020-07-31 16:58:49 +05:30
parent 3f7388394c
commit 9c68a78597
1 changed files with 11 additions and 2 deletions

View File

@ -46,7 +46,16 @@ class ConfigurationForm extends FormRequest
{
return [
'general.design.admin_logo.logo_image.mimes' => 'Invalid file format. Use only jpeg, bmp, png, jpg.',
'general.design.admin_logo.logo_image.max' => ' Image failed to upload.'
];
}
}
/**
* Set the attribute name.
*/
public function attributes()
{
return [
'general.design.admin_logo.logo_image' => 'Logo Image',
];
}
}