Path : /var/www/clients/client0/web25/web/resources/views/back/follows/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/clients/client0/web25/web/resources/views/back/follows/form.blade.php |
@extends('back.layout') @section('content') <form method="post" action="{{ Route::currentRouteName() === 'follows.edit' ? route('follows.update', $follow->id) : route('follows.store') }}"> @if(Route::currentRouteName() === 'follows.edit') @method('PUT') @endif @csrf <div class="row"> <div class="col-md-12"> <x-back.validation-errors :errors="$errors" /> @if(session('ok')) <x-back.alert type='success' title="{!! session('ok') !!}"> </x-back.alert> @endif <x-back.card type='info' :outline="true" title=''> <x-back.input title='Title of the social link' name='title' :value="isset($follow) ? $follow->title : ''" input='text' :required="true"> </x-back.input> <x-back.input title='Href of the social link' name='href' :value="isset($follow) ? $follow->href : ''" input='text' :required="true"> </x-back.input> </x-back.card> <button type="submit" class="btn btn-primary" id="submit">@lang('Submit')</button> </div> </div> </form> @endsection @section('js') @include('back.shared.editorScript') @endsection