23 lines
1.2 KiB
PHP
23 lines
1.2 KiB
PHP
<div class="row mb-3">
|
|
<label for="title" class="form-label ol-form-label col-sm-2 col-form-label">{{ get_phrase('Facebook') }}</label>
|
|
<div class="col-sm-8">
|
|
<input type="text" name="facebook" class="form-control ol-form-control" id="title"
|
|
@isset($instructor->facebook) value="{{ $instructor->facebook }}" @else value="{{ old('facebook') }}" @endisset>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row mb-3">
|
|
<label for="title" class="form-label ol-form-label col-sm-2 col-form-label">{{ get_phrase('Twitter') }}</label>
|
|
<div class="col-sm-8">
|
|
<input type="text" name="twitter" class="form-control ol-form-control" id="title"
|
|
@isset($instructor->twitter) value="{{ $instructor->twitter }}" @else value="{{ old('twitter') }}" @endisset>
|
|
</div>
|
|
</div>
|
|
<div class="row mb-3">
|
|
<label for="title" class="form-label ol-form-label col-sm-2 col-form-label">{{ get_phrase('Linkedin') }}</label>
|
|
<div class="col-sm-8">
|
|
<input type="text" name="linkedin" class="form-control ol-form-control" id="title"
|
|
@isset($instructor->linkedin) value="{{ $instructor->linkedin }}" @else value="{{ old('linkedin') }}" @endisset>
|
|
</div>
|
|
</div>
|