@extends('layouts.app') @section('title') {{ __('messages.app_download') }} @endsection @section('content')
@include('layouts.errors') @include('flash::message')
@csrf
{{ Form::label('play_store_link', __('messages.play_store_link') . ':', ['class' => 'form-label']) }} {{ Form::text('play_store_link', isset($setting['play_store_link']) ? $setting['play_store_link'] : null, ['class' => 'form-control form-control-color w-100 mb-3', 'placeholder' => __('messages.play_store_link'), 'id' => 'play_store_link']) }}
{{ Form::label('app_store_link', __('messages.app_store_link') . ':', ['class' => 'form-label']) }} {{ Form::text('app_store_link', isset($setting['app_store_link']) ? $setting['app_store_link'] : null, ['class' => 'form-control form-control-color w-100 mb-3', 'placeholder' => __('messages.app_store_link'), 'id' => 'app_store_link']) }}
{{ Form::label('app_store_link', __('messages.app_download_section.delete_account_url') . ':', ['class' => 'form-label']) }}
{{ route('login') . '?redirect=delete' }}
{{ __('messages.common.discard') }}
@endsection