@extends('admin.layout') @section('content')
@csrf
Update PWA Settings
@csrf
...
@if ($errors->has('icon_128'))

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

@endif
...
@if ($errors->has('icon_256'))

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

@endif
...
@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