@extends('layouts.app') @section('title') {{ __('Tạo nhóm telegram') }} @endsection @section('admin') active @endsection @section('section.header') {{ __('Thêm mới nhóm telegram') }} {{ __('Danh sách nhóm telegram') }} {{ __('Thêm mới') }} @endsection @section('section.content') @if (Session::has('success')) {{ Session::get('success') }} @endif @if (Session::has('error')) {{ Session::get('error') }} @endif @csrf {{-- col-12 mobile, col-8 desktop --}} {{-- Tên nhóm --}} {{ __('Tên nhóm') }} @error('group_name') * {{ $message }} @enderror {{-- Chat ID --}} {{ __('Chat ID') }} @error('chat_id') * {{ $message }} @enderror {{-- Username --}} {{ __('Đối tác (username)') }} --Chọn đối tác-- @foreach (\App\Models\User\User::getPartners() as $partner) {{ $partner->username }} @endforeach @error('username') * {{ $message }} @enderror {{-- Loại --}} {{ __('Loại') }} --Chọn loại nhóm-- Tất cả PAYIN PAYOUT IN&OUT @error('type') * {{ $message }} @enderror {{-- Trạng thái --}} {{ __('Trạng thái') }} Bật để nhóm hoạt động và gửi thông báo {{-- Submit --}} {{ __('Lưu') }} {{ __('Huỷ') }} @endsection @section('scripts') @endsection @section('styles') @endsection