mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 01:58:07 +00:00
23 lines
967 B
PHP
23 lines
967 B
PHP
@extends('layouts.main')
|
|
|
|
@section('breadcrumb')
|
|
@include('admin.parts.breadcrumb.accounts.show', ['account' => $account])
|
|
<li class="breadcrumb-item active" aria-current="page">{{ __('Add contact') }}</li>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<header>
|
|
<h1><i class="ph ph-user-plus"></i> {{ __('Add contact') }}</h1>
|
|
<a href="{{ route('admin.account.edit', $account->id) }}" class="btn secondary oppose">{{ __('Cancel') }}</a>
|
|
<input form="add_contact" class="btn" type="submit" value="Add">
|
|
</header>
|
|
<form id="add_contact" method="POST" action="{{ route('admin.account.contact.store', $account->id) }}" accept-charset="UTF-8">
|
|
@csrf
|
|
@method('post')
|
|
<div>
|
|
<input placeholder="username@server.com" name="sip" type="text" id="sip" required>
|
|
<label for="sip">Local SIP Address</label>
|
|
@include('parts.errors', ['name' => 'sip'])
|
|
</div>
|
|
</form>
|
|
@endsection
|