@extends('layouts.app') @section('content')
@if(session()->get('success'))
{{ session()->get('success') }}

@endif @if(!empty($errors->all())) @foreach($errors->all() as $error)
{{$error }}
@endforeach @endif {{-- PWA actions --}} @if(!isset($pwa->data))
@csrf
@elseif(isset($pwa->data) && $pwa->status == 0)
@csrf
@csrf @method('delete')
@elseif(isset($pwa->data) && $pwa->status == 1)
@csrf
@csrf @method('delete')
{{-- PWA app information --}}
@csrf @method('put')
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('short_name')) {{ $errors->first('short_name') }} @endif
@if ($errors->has('start_url')) {{ $errors->first('start_url') }} @endif

For more details click here

{{-- PWA icons --}} {{-- PWA splashes --}}
@endif
@endsection