@extends('layouts.app') @section('content')
{{ html()->modelForm($team, 'PUT')->route('team.update', $team->id)->class(['needs-validation'])->attributes(['novalidate'])->open() }} {{-- @include('ccms::team.partials._form') --}}
{{ html()->label('Name')->class('form-label') }} {{ html()->span('*')->class('text-danger') }} {{ html()->text('title')->class('form-control')->placeholder('Enter Name')->required() }} {{ html()->div('Name is required')->class('invalid-feedback') }}
{{ html()->label('Designation')->class('form-label') }} {{ html()->text('designation')->class('form-control')->placeholder('Enter Designation') }}
{{ html()->label('Degree')->class('form-label') }} {{ html()->text('degree')->class('form-control')->placeholder('Enter Degree') }}
{{ html()->label('Description')->class('form-label')->for('description') }} {{ html()->textarea('description')->class('form-control ckeditor-classic') }}
Other Information
{{ html()->label('Branch')->class('form-label')->for('branch_id') }} {{ html()->select('branch_id', $branchOptions)->class('form-select choices-select')->placeholder('Select') }}
{{ html()->label('Address')->class('form-label')->for('address') }} {{ html()->text('address')->class('form-control')->placeholder('Enter Address') }}
{{ html()->label('Email')->class('form-label')->for('email') }} {{ html()->text('email')->class('form-control')->placeholder('Enter Email') }}
{{ html()->label('Mobile')->class('form-label')->for('mobile') }} {{ html()->text('mobile')->class('form-control')->placeholder('Enter Mobile') }}
Social Link
{{ html()->label('Facebook')->class('form-label')->for('facebook') }} {{ html()->text('facebook')->class('form-control')->value($team->facebook)->placeholder('Enter Facebook Link') }}
{{ html()->label('Youtube')->class('form-label')->for('youtube') }} {{ html()->text('youtube')->class('form-control')->value($team->twitter)->placeholder('Enter Youtube Link') }}
{{ html()->label('Twitter')->class('form-label')->for('twitter') }} {{ html()->text('twitter')->class('form-control')->value($team->linkedin)->placeholder('Enter Twitter Link') }}
{{ html()->label('Linkedin')->class('form-label')->for('linkedin') }} {{ html()->text('linkedin')->class('form-control')->value($team->youtube)->placeholder('Enter Linkedin Link') }}
{{ html()->label('Whatsapp')->class('form-label')->for('whatsapp') }} {{ html()->text('whatsapp')->class('form-control')->value($team->whatsapp)->placeholder('Enter Whatsapp Link') }}
Publish
{{ html()->select('status', config('constants.page_status_options'))->class('form-select choices-select ') }}
{{ html()->form()->close() }}
@endsection