@extends('layouts.main') @section('title',trans('core.col_profileupdate_title')) @section('content')
Please wait, Loading...
@if($message = Session::get('success'))
Success! {{ $message }}
@elseif($message = Session::get('error'))
Error!{{ $message }}
@endif
{!! Form::open(['url' => secure_url('updatecollegeprofile'),'method'=>'POST','name'=>'college_profile_update','id'=>'js_college_profile_update']) !!} {{ csrf_field() }}
{!! Form::text("college_name",$college_name,array("class"=>"form-control", 'disabled' => 'disabled')) !!} @if ($errors->has('college_name')) {!! $errors->first('college_name') !!} @endif
{!! Form::text("spoc_name",$spoc_name,array("class"=>"form-control",'maxlength' => 80)) !!} @if ($errors->has('spoc_name')) {!! $errors->first('spoc_name') !!} @endif
{!! Form::textarea("about_col",$about_college,array("class"=>"form-control",'rows' => 8, 'cols' => 40,'maxlength' => 2000)) !!} @if ($errors->has('about_col')) {!! $errors->first('about_col') !!} @endif
{!! Form::text("website_address",$website_address,array("class"=>"form-control","id"=>"js-website-address",'maxlength' => 100)) !!} @if ($errors->has('website_address')) {!! $errors->first('website_address') !!} @endif

Communication Address

{!! Form::textarea("col_address",$address,array("class"=>"form-control",'rows' => 8, 'cols' => 40,'maxlength' => 200)) !!} @if ($errors->has('col_address')) {!! $errors->first('col_address') !!} @endif
{!! Form::select("state",$strstate,$state,array("class"=>"form-control select8","data-live-search"=>"true","id"=>"js-state")) !!} @if ($errors->has('state')) {!! $errors->first('state') !!} @endif
{!! Form::select("district",$citydetails+[''=>'Select district'],$city,array("class"=>"form-control select8","id"=>"js-district","data-live-search"=>"true",)) !!} @if ($errors->has('district')) {!! $errors->first('district') !!} @endif
{!! Form::text("contact_number",$mobile_number,array("class"=>"form-control","placeholder"=>"Contact number","id"=>"js-contact-number","maxlength"=>"12")) !!} @if ($errors->has('contact_number')) {!! $errors->first('contact_number') !!} @endif
Cancel
{!! Form::close() !!}
Upload Logo
Upload Logo
@if(!empty($logo)) @else @endif
@if($resourceurl)
@else User-Profile-Image @endif
{!! Form::open(['url' =>secure_url('updatecollegevideo'),'method'=>'POST','files' => true, 'enctype' => 'multipart/form-data','name'=>'college_profile_update','id'=>'js_college_profile_video_update']) !!} {{ csrf_field() }}
{!! Form::text("video_title",$video_title ? $video_title : '',array("class"=>"form-control", "maxlength"=>"50","id"=>"video_title")) !!} @if ($errors->has('video_title')) {!! $errors->first('video_title') !!} @endif
@if ($errors->has('profile_video')) {!! $errors->first('profile_video') !!} @endif
{!! Form::close() !!}
@endsection @section('footer') @endsection