|
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 : |
@extends('admin.layout')
@section('content')
<!-- begin::main content -->
<main class="main-content">
<div class="container">
<!-- begin::page header -->
<div class="page-header">
<h3>Add 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">Add 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">Add Live Studio</h5>
<a href="{{ asset('admin/studio-list') }}" class="btn btn-primary text-white pull-right"><i
class="fa fa-list"></i> Live Studio List</a>
</div>
<div class="card-body">
<form action="{{ asset('admin/add-studio') }}" 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="{{ old('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="{{ old('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="{{ old('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="{{old('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')
<!-- end::select2 -->
@endpush