KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.4.41 (Ubuntu)
System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64
User : www-data ( 33)
PHP Version : 8.2.12
Disable Function : NONE
Directory :  /var/www/liminfinity.edukrypt.in/resources/views/admin/studio/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/liminfinity.edukrypt.in/resources/views/admin/studio/edit-studio.blade.php
@extends('admin.layout')
@section('content')



    <!-- begin::main content -->

    <main class="main-content">
        <div class="container">
            <!-- begin::page header -->
            <div class="page-header">
                <h3>Edit Live Studio</h3>
                <nav aria-label="breadcrumb">
                    <ol class="breadcrumb">
                        <li class="breadcrumb-item"><a href="#">Dashboard</a></li>
                        <li class="breadcrumb-item"><a href="{{ asset('admin/studio-list') }}">Studio List</a></li>
                        <li class="breadcrumb-item active" aria-current="page">Edit Studio</li>
                    </ol>
                </nav>
            </div>
            <!-- end::page header -->
            <x-flashMessage />
            <div class="row">
                <div class="col-md-6">
                    <div class="card">
                        <div class="card-header">
                            <h5 class="card-title pull-left m-t-10">Edit Live Studio</h5>
                            <a href="{{ asset('admin/studio-list') }}" class="btn btn-primary text-white pull-right"><i
                                    class="fa fa-list"></i>&nbsp;Live Studio List</a>
                        </div>
                        <div class="card-body">
                            <form action="{{ asset('admin/edit-studio/' . Request::segment(3)) }}" method="post">
                                @csrf
                                <span id="msg"></span>
                                <div class="form-group">
                                    <label for="std_id">Studio Id</label>
                                    <input type="text" class="form-control" name="std_id"
                                        value="{{ !empty($studio->std_id) ? $studio->std_id : '' }}" id="std_id"
                                        placeholder="Enter Studio Id">

                                    @if ($errors->has('std_id'))
                                        <div class="error">
                                            {{ $errors->first('std_id') }}
                                        </div>
                                    @endif

                                </div>



                                <div class="form-group">
                                    <label for="phone">Studio Name</label>
                                    <input type="text" class="form-control" name="std_name"
                                        value="{{ !empty($studio->std_name) ? $studio->std_name : '' }}" id="std_name"
                                        placeholder="Enter Studio Name">

                                    @if ($errors->has('std_name'))
                                        <div class="error">
                                            {{ $errors->first('std_name') }}
                                        </div>
                                    @endif

                                </div>
                                

                                <div class="form-group">
                                    <label for="institute">RTMP Url</label>
                                    <input type="text" class="form-control" name="std_rtmp_url"
                                        value="{{ !empty($studio->std_rtmp_url) ? $studio->std_rtmp_url : '' }}"
                                        id="std_rtmp_url" placeholder="Enter rtmp url">

                                    @if ($errors->has('std_rtmp_url'))
                                        <div class="error">
                                            {{ $errors->first('std_rtmp_url') }}
                                        </div>
                                    @endif

                                </div>

                                {{-- <div class="form-group">
                                    <label for="institute">RTMP Key</label>
                                    <input type="text" class="form-control" name="std_rtmp_key"
                                        value="{{ !empty($studio->std_rtmp_key) ? $studio->std_rtmp_key : '' }}"
                                        id="std_rtmp_key" placeholder="Enter rtmp key">

                                    @if ($errors->has('std_rtmp_key'))
                                        <div class="error">
                                            {{ $errors->first('std_rtmp_key') }}
                                        </div>
                                    @endif

                                </div> --}}

                                <button type="submit" class="btn btn-primary">Submit</button>
                            </form>
                        </div>
                    </div>



                </div>

            </div>

        </div>

    </main>
    <!-- end::main content -->

@endsection
@push('footer-script')
    <!-- begin::select2 -->


@endpush

Anon7 - 2021