@extends('layouts.default') @section('content')
Edit College
{{ Userdefined::showMessage() }}
College Name
*
Contact Name
*
Contact Mobile
*
Contact Email
*
Country
*
Select Country
@foreach($countries as $country)
{{ $country->name }}
@endforeach
State
Select State
@foreach($states as $state) @if($state->country_id==$colleges_list->country)
{{ $state->name }}
@endif @endforeach
City
city
Select City
@foreach($cities as $city) @if($city->state_id==$colleges_list->state)
{{ $city->name }}
@endif @endforeach
Address
{{ $colleges_list->address }}
Reset
Submit
{{ csrf_field() }} {{ method_field('PUT') }}