@extends('admin.layout') @section('content')
@csrf
{{ __('Update PWA Settings') }}
@csrf

256 X 256 image
{{ __('Choose Image') }}
@if ($errors->has('icon_128'))

{{ $errors->first('icon_128') }}

@endif

256 X 256 image
{{ __('Choose Image') }}
@if ($errors->has('icon_256'))

{{ $errors->first('icon_256') }}

@endif

512 X 512 image
{{ __('Choose Image') }}
@if ($errors->has('icon_512'))

{{ $errors->first('icon_512') }}

@endif
@if ($errors->has('short_name'))

{{ $errors->first('short_name') }}

@endif
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('background_color'))

{{ $errors->first('background_color') }}

@endif
@if ($errors->has('theme_color'))

{{ $errors->first('theme_color') }}

@endif
@endsection